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 /protocols/Telegram/src/stdafx.h | |
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 'protocols/Telegram/src/stdafx.h')
-rw-r--r-- | protocols/Telegram/src/stdafx.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/protocols/Telegram/src/stdafx.h b/protocols/Telegram/src/stdafx.h index 3393f840e7..43047dfb4a 100644 --- a/protocols/Telegram/src/stdafx.h +++ b/protocols/Telegram/src/stdafx.h @@ -1,7 +1,7 @@ #ifndef _STDAFX_H_
#define _STDAFX_H_
-#include "..\..\..\miranda-private-keys\Telegram\api.h"
+#include "../../../miranda-private-keys/Telegram/api.h"
#include <windows.h>
#include <time.h>
@@ -41,12 +41,12 @@ extern "C"
{
- #include "tgl\tgl.h"
- #include "tgl\tgl-net.h"
- #include "tgl\tgl-timers.h"
- #include "tgl\tgl-binlog.h"
- #include "tgl\config.h"
- #include "tgl\mtproto-client.h"
+ #include "tgl/tgl.h"
+ #include "tgl/tgl-net.h"
+ #include "tgl/tgl-timers.h"
+ #include "tgl/tgl-binlog.h"
+ #include "tgl/config.h"
+ #include "tgl/mtproto-client.h"
}
|