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 /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 'src')
-rw-r--r-- | src/core/stdcrypt/src/encrypt.cpp | 2 | ||||
-rw-r--r-- | src/mir_app/src/path.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/core/stdcrypt/src/encrypt.cpp b/src/core/stdcrypt/src/encrypt.cpp index 414bda141a..5710f9c2eb 100644 --- a/src/core/stdcrypt/src/encrypt.cpp +++ b/src/core/stdcrypt/src/encrypt.cpp @@ -23,7 +23,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "stdafx.h"
-#include "..\..\..\libs\zlib\src\zlib.h"
+#include "../../../libs/zlib/src/zlib.h"
struct ExternalKey
{
diff --git a/src/mir_app/src/path.cpp b/src/mir_app/src/path.cpp index 64426f4e4e..07d5ddee3f 100644 --- a/src/mir_app/src/path.cpp +++ b/src/mir_app/src/path.cpp @@ -25,7 +25,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "stdafx.h"
#include "profilemanager.h"
-#include "..\..\..\plugins\ExternalAPI\m_folders.h"
+#include "../../../plugins/ExternalAPI/m_folders.h"
extern TCHAR g_profileDir[MAX_PATH], g_shortProfileName[MAX_PATH];
|