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/SmileyAdd | |
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/SmileyAdd')
-rw-r--r-- | plugins/SmileyAdd/src/regexp/WCMatcher.cpp | 2 | ||||
-rw-r--r-- | plugins/SmileyAdd/src/regexp/WCPattern.cpp | 2 | ||||
-rw-r--r-- | plugins/SmileyAdd/src/stdafx.h | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/plugins/SmileyAdd/src/regexp/WCMatcher.cpp b/plugins/SmileyAdd/src/regexp/WCMatcher.cpp index 5a1f73c183..939e347afd 100644 --- a/plugins/SmileyAdd/src/regexp/WCMatcher.cpp +++ b/plugins/SmileyAdd/src/regexp/WCMatcher.cpp @@ -1,4 +1,4 @@ -#include "..\stdafx.h"
+#include "../stdafx.h"
const int WCMatcher::MATCH_ENTIRE_STRING = 0x01;
diff --git a/plugins/SmileyAdd/src/regexp/WCPattern.cpp b/plugins/SmileyAdd/src/regexp/WCPattern.cpp index c64022e460..22a7b78847 100644 --- a/plugins/SmileyAdd/src/regexp/WCPattern.cpp +++ b/plugins/SmileyAdd/src/regexp/WCPattern.cpp @@ -23,7 +23,7 @@ @version 1.07.00
*/
-#include "..\stdafx.h"
+#include "../stdafx.h"
std::map<CMString, WCPattern *> WCPattern::compiledWCPatterns;
std::map<CMString, std::pair<CMString, unsigned long> > WCPattern::registeredWCPatterns;
diff --git a/plugins/SmileyAdd/src/stdafx.h b/plugins/SmileyAdd/src/stdafx.h index f45b5a5365..3f9d130e8e 100644 --- a/plugins/SmileyAdd/src/stdafx.h +++ b/plugins/SmileyAdd/src/stdafx.h @@ -35,7 +35,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include <commctrl.h>
#include <gdiplus.h>
#include <tom.h>
-#include <msapi\comptr.h>
+#include <msapi/comptr.h>
#include <io.h>
#include <fcntl.h>
@@ -70,8 +70,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include <m_smileyadd.h>
#include <m_folders.h>
-#include "regexp\wcpattern.h"
-#include "regexp\wcmatcher.h"
+#include "regexp/wcpattern.h"
+#include "regexp/wcmatcher.h"
typedef WCPattern _TPattern;
typedef WCMatcher _TMatcher;
|