diff options
author | Robert Pösel <robyer@seznam.cz> | 2016-07-22 10:45:08 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2016-07-22 10:45:08 +0000 |
commit | 2482ce144705af4a8bbfac069343d9e0d7eb3e75 (patch) | |
tree | fd1604f779c0a154f9218932f70891e65f1b18b4 /plugins/PluginUpdater/src | |
parent | 7e7cc4907749e87692855aee01caa0cfbc791c5b (diff) |
Standardize use of slashes in includes to "/" (thanks ybznek for idea)
Previous paths weren't usable on Linux
git-svn-id: http://svn.miranda-ng.org/main/trunk@17121 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/PluginUpdater/src')
-rw-r--r-- | plugins/PluginUpdater/src/stdafx.h | 2 | ||||
-rw-r--r-- | plugins/PluginUpdater/src/unzipfile.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/plugins/PluginUpdater/src/stdafx.h b/plugins/PluginUpdater/src/stdafx.h index 0a97be2de0..872a7d372b 100644 --- a/plugins/PluginUpdater/src/stdafx.h +++ b/plugins/PluginUpdater/src/stdafx.h @@ -47,7 +47,7 @@ Boston, MA 02111-1307, USA. #include "resource.h"
#if MIRANDA_VER < 0x0A00
-#include "Compat\compat.h"
+#include "Compat/compat.h"
#endif
#include "Notifications.h"
diff --git a/plugins/PluginUpdater/src/unzipfile.cpp b/plugins/PluginUpdater/src/unzipfile.cpp index 4b79f0fc52..c4696096aa 100644 --- a/plugins/PluginUpdater/src/unzipfile.cpp +++ b/plugins/PluginUpdater/src/unzipfile.cpp @@ -22,9 +22,9 @@ Boston, MA 02111-1307, USA. extern "C"
{
#if MIRANDA_VER < 0x0A00
- #include "Minizip\unzip.h"
+ #include "Minizip/unzip.h"
#else
- #include "..\..\libs\zlib\src\unzip.h"
+ #include "../../libs/zlib/src/unzip.h"
#endif
void fill_fopen64_filefunc(zlib_filefunc64_def *pzlib_filefunc_def);
|