summaryrefslogtreecommitdiff
path: root/plugins/TabSRMM/src/chat
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2015-08-01 19:09:50 +0000
committerKirill Volinsky <mataes2007@gmail.com>2015-08-01 19:09:50 +0000
commitd777d359facf9995741a3c96c12bcd60dbac04ee (patch)
treefb89d31980b756b4d32a21a972fa3a4bb526c63b /plugins/TabSRMM/src/chat
parentc1d55f386dda0203be456f8188070d0397711e32 (diff)
tabsrmm: common project
git-svn-id: http://svn.miranda-ng.org/main/trunk@14787 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TabSRMM/src/chat')
-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
8 files changed, 8 insertions, 8 deletions
diff --git a/plugins/TabSRMM/src/chat/log.cpp b/plugins/TabSRMM/src/chat/log.cpp
index 0b6fadcd20..9e2a5c573e 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 "..\commonheaders.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 5b077eda95..9ac88e10b5 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 "..\commonheaders.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 0c8302e101..21d51c7979 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 "..\commonheaders.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 484065caf2..cef2d0b66e 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 "..\commonheaders.h"
+#include "..\stdafx.h"
void CMUCHighlight::cleanup()
{
diff --git a/plugins/TabSRMM/src/chat/options.cpp b/plugins/TabSRMM/src/chat/options.cpp
index 45e7c0bd19..cba62770ff 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 "..\commonheaders.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 a638836b7e..918f5d5524 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 "..\commonheaders.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 c9e5e5cfd7..235c38c5e0 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 "..\commonheaders.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 4197ca245b..e827e9ddfd 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 "..\commonheaders.h"
+#include "..\stdafx.h"
// externs...
extern LRESULT CALLBACK SplitterSubclassProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);