diff options
Diffstat (limited to 'plugins/Scriver/src')
-rw-r--r-- | plugins/Scriver/src/chat.h (renamed from plugins/Scriver/src/chat/chat.h) | 0 | ||||
-rw-r--r-- | plugins/Scriver/src/chat_log.cpp (renamed from plugins/Scriver/src/chat/log.cpp) | 2 | ||||
-rw-r--r-- | plugins/Scriver/src/chat_main.cpp (renamed from plugins/Scriver/src/chat/main.cpp) | 2 | ||||
-rw-r--r-- | plugins/Scriver/src/chat_manager.cpp (renamed from plugins/Scriver/src/chat/manager.cpp) | 2 | ||||
-rw-r--r-- | plugins/Scriver/src/chat_options.cpp (renamed from plugins/Scriver/src/chat/options.cpp) | 2 | ||||
-rw-r--r-- | plugins/Scriver/src/chat_tools.cpp (renamed from plugins/Scriver/src/chat/tools.cpp) | 2 | ||||
-rw-r--r-- | plugins/Scriver/src/chat_window.cpp (renamed from plugins/Scriver/src/chat/window.cpp) | 2 | ||||
-rw-r--r-- | plugins/Scriver/src/stdafx.h | 2 |
8 files changed, 7 insertions, 7 deletions
diff --git a/plugins/Scriver/src/chat/chat.h b/plugins/Scriver/src/chat.h index ca620576f1..ca620576f1 100644 --- a/plugins/Scriver/src/chat/chat.h +++ b/plugins/Scriver/src/chat.h diff --git a/plugins/Scriver/src/chat/log.cpp b/plugins/Scriver/src/chat_log.cpp index 02ba38a147..3d8ea3eb55 100644 --- a/plugins/Scriver/src/chat/log.cpp +++ b/plugins/Scriver/src/chat_log.cpp @@ -19,7 +19,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include "../stdafx.h"
+#include "stdafx.h"
#ifndef EM_GETSCROLLPOS
#define EM_GETSCROLLPOS (WM_USER+221)
diff --git a/plugins/Scriver/src/chat/main.cpp b/plugins/Scriver/src/chat_main.cpp index 086b64c529..f4b4755e56 100644 --- a/plugins/Scriver/src/chat/main.cpp +++ b/plugins/Scriver/src/chat_main.cpp @@ -19,7 +19,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include "../stdafx.h"
+#include "stdafx.h"
// globals
CHAT_MANAGER *pci;
diff --git a/plugins/Scriver/src/chat/manager.cpp b/plugins/Scriver/src/chat_manager.cpp index 307059dfd8..f86764560a 100644 --- a/plugins/Scriver/src/chat/manager.cpp +++ b/plugins/Scriver/src/chat_manager.cpp @@ -19,7 +19,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include "../stdafx.h"
+#include "stdafx.h"
HWND SM_FindWindowByContact(MCONTACT hContact)
{
diff --git a/plugins/Scriver/src/chat/options.cpp b/plugins/Scriver/src/chat_options.cpp index 8ee73f0592..ee3b0647df 100644 --- a/plugins/Scriver/src/chat/options.cpp +++ b/plugins/Scriver/src/chat_options.cpp @@ -19,7 +19,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include "../stdafx.h"
+#include "stdafx.h"
#define UM_CHECKSTATECHANGE (WM_USER+100)
diff --git a/plugins/Scriver/src/chat/tools.cpp b/plugins/Scriver/src/chat_tools.cpp index 148410d125..050d4656c5 100644 --- a/plugins/Scriver/src/chat/tools.cpp +++ b/plugins/Scriver/src/chat_tools.cpp @@ -19,7 +19,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include "../stdafx.h"
+#include "stdafx.h"
wchar_t* my_strstri(const wchar_t* s1, const wchar_t* s2)
{
diff --git a/plugins/Scriver/src/chat/window.cpp b/plugins/Scriver/src/chat_window.cpp index ebdfc49dee..b6a9cd29d3 100644 --- a/plugins/Scriver/src/chat/window.cpp +++ b/plugins/Scriver/src/chat_window.cpp @@ -19,7 +19,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include "../stdafx.h"
+#include "stdafx.h"
struct MESSAGESUBDATA
{
diff --git a/plugins/Scriver/src/stdafx.h b/plugins/Scriver/src/stdafx.h index 15dde61b6f..c276c7e0fa 100644 --- a/plugins/Scriver/src/stdafx.h +++ b/plugins/Scriver/src/stdafx.h @@ -120,7 +120,7 @@ int StatusIconPressed(WPARAM wParam, LPARAM lParam); #include "input.h"
#include "richutil.h"
#include "statusicon.h"
-#include "chat/chat.h"
+#include "chat.h"
extern GlobalMessageData g_dat;
|