summaryrefslogtreecommitdiff
path: root/plugins/TabSRMM
diff options
context:
space:
mode:
authorRobert Pösel <robyer@seznam.cz>2016-07-22 10:45:08 +0000
committerRobert Pösel <robyer@seznam.cz>2016-07-22 10:45:08 +0000
commit2482ce144705af4a8bbfac069343d9e0d7eb3e75 (patch)
treefd1604f779c0a154f9218932f70891e65f1b18b4 /plugins/TabSRMM
parent7e7cc4907749e87692855aee01caa0cfbc791c5b (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/TabSRMM')
-rw-r--r--plugins/TabSRMM/src/chat/log.cpp2
-rw-r--r--plugins/TabSRMM/src/chat/main.cpp2
-rw-r--r--plugins/TabSRMM/src/chat/manager.cpp2
-rw-r--r--plugins/TabSRMM/src/chat/muchighlight.cpp2
-rw-r--r--plugins/TabSRMM/src/chat/options.cpp2
-rw-r--r--plugins/TabSRMM/src/chat/services.cpp2
-rw-r--r--plugins/TabSRMM/src/chat/tools.cpp2
-rw-r--r--plugins/TabSRMM/src/chat/window.cpp2
-rw-r--r--plugins/TabSRMM/src/msgs.h2
-rw-r--r--plugins/TabSRMM/src/stdafx.h2
10 files changed, 10 insertions, 10 deletions
diff --git a/plugins/TabSRMM/src/chat/log.cpp b/plugins/TabSRMM/src/chat/log.cpp
index 5ec32871ae..33121fd580 100644
--- a/plugins/TabSRMM/src/chat/log.cpp
+++ b/plugins/TabSRMM/src/chat/log.cpp
@@ -27,7 +27,7 @@
// Implements the richedit-based message history display for the group
// chat window.
-#include "..\stdafx.h"
+#include "../stdafx.h"
/*
* The code for streaming the text is to a large extent copied from
diff --git a/plugins/TabSRMM/src/chat/main.cpp b/plugins/TabSRMM/src/chat/main.cpp
index f401e72309..a158607a14 100644
--- a/plugins/TabSRMM/src/chat/main.cpp
+++ b/plugins/TabSRMM/src/chat/main.cpp
@@ -26,7 +26,7 @@
//
// chat module exports and functions to load/unload the plugin.
-#include "..\stdafx.h"
+#include "../stdafx.h"
HANDLE g_hWindowList;
HMENU g_hMenu = NULL;
diff --git a/plugins/TabSRMM/src/chat/manager.cpp b/plugins/TabSRMM/src/chat/manager.cpp
index 84cd844f18..b1958c909c 100644
--- a/plugins/TabSRMM/src/chat/manager.cpp
+++ b/plugins/TabSRMM/src/chat/manager.cpp
@@ -24,7 +24,7 @@
//
// (C) 2005-2010 by silvercircle _at_ gmail _dot_ com and contributors
-#include "..\stdafx.h"
+#include "../stdafx.h"
static int sttCompareNicknames(const TCHAR *s1, const TCHAR *s2)
{
diff --git a/plugins/TabSRMM/src/chat/muchighlight.cpp b/plugins/TabSRMM/src/chat/muchighlight.cpp
index daaa8fce07..4567ba7000 100644
--- a/plugins/TabSRMM/src/chat/muchighlight.cpp
+++ b/plugins/TabSRMM/src/chat/muchighlight.cpp
@@ -26,7 +26,7 @@
//
// highlighter class for multi user chats
-#include "..\stdafx.h"
+#include "../stdafx.h"
void CMUCHighlight::cleanup()
{
diff --git a/plugins/TabSRMM/src/chat/options.cpp b/plugins/TabSRMM/src/chat/options.cpp
index 2da965d14e..c28cc51af0 100644
--- a/plugins/TabSRMM/src/chat/options.cpp
+++ b/plugins/TabSRMM/src/chat/options.cpp
@@ -26,7 +26,7 @@
//
// group chat options and generic font handling
-#include "..\stdafx.h"
+#include "../stdafx.h"
#define FONTF_BOLD 1
#define FONTF_ITALIC 2
diff --git a/plugins/TabSRMM/src/chat/services.cpp b/plugins/TabSRMM/src/chat/services.cpp
index 122e287735..0215f305f7 100644
--- a/plugins/TabSRMM/src/chat/services.cpp
+++ b/plugins/TabSRMM/src/chat/services.cpp
@@ -26,7 +26,7 @@
//
// This implements the services that form the group chat API
-#include "..\stdafx.h"
+#include "../stdafx.h"
HWND CreateNewRoom(TContainerData *pContainer, SESSION_INFO *si, BOOL bActivateTab, BOOL bPopupContainer, BOOL bWantPopup)
{
diff --git a/plugins/TabSRMM/src/chat/tools.cpp b/plugins/TabSRMM/src/chat/tools.cpp
index 6e722c597b..febc897b1b 100644
--- a/plugins/TabSRMM/src/chat/tools.cpp
+++ b/plugins/TabSRMM/src/chat/tools.cpp
@@ -26,7 +26,7 @@
//
// Helper functions for the group chat module.
-#include "..\stdafx.h"
+#include "../stdafx.h"
int GetRichTextLength(HWND hwnd)
{
diff --git a/plugins/TabSRMM/src/chat/window.cpp b/plugins/TabSRMM/src/chat/window.cpp
index 5ecd96eeed..71bdd2811b 100644
--- a/plugins/TabSRMM/src/chat/window.cpp
+++ b/plugins/TabSRMM/src/chat/window.cpp
@@ -26,7 +26,7 @@
//
// This implements the group chat dialog window
-#include "..\stdafx.h"
+#include "../stdafx.h"
// externs...
extern LRESULT CALLBACK SplitterSubclassProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
diff --git a/plugins/TabSRMM/src/msgs.h b/plugins/TabSRMM/src/msgs.h
index 3df0bc4185..e096eae9ec 100644
--- a/plugins/TabSRMM/src/msgs.h
+++ b/plugins/TabSRMM/src/msgs.h
@@ -750,7 +750,7 @@ struct TLogIcon {
HBRUSH hBkgBrush;
};
-#include "..\TabSRMM_icons\resource.h" // icon pack values
+#include "../TabSRMM_icons/resource.h" // icon pack values
struct TCpTable {
UINT cpId;
diff --git a/plugins/TabSRMM/src/stdafx.h b/plugins/TabSRMM/src/stdafx.h
index bee1a8f4f2..d38bfa6cf6 100644
--- a/plugins/TabSRMM/src/stdafx.h
+++ b/plugins/TabSRMM/src/stdafx.h
@@ -46,7 +46,7 @@
#include <malloc.h>
#include <locale.h>
-#include <msapi\vsstyle.h>
+#include <msapi/vsstyle.h>
#include <m_avatars.h>
#include <m_message.h>
#include <win2k.h>