diff options
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;
|