diff options
author | George Hazan <george.hazan@gmail.com> | 2012-12-06 17:40:29 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-12-06 17:40:29 +0000 |
commit | 6266d59bee0d06a9d188ec01040659fcee7542e3 (patch) | |
tree | c34b8805164c6bbae99f47262b00211d6808d9ce /plugins/Scriver | |
parent | 123e0df8cacb3caece0eef2735d929e42873d412 (diff) |
fixes for vs2012
git-svn-id: http://svn.miranda-ng.org/main/trunk@2666 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Scriver')
-rw-r--r-- | plugins/Scriver/src/chat/log.cpp | 2 | ||||
-rw-r--r-- | plugins/Scriver/src/chat/options.cpp | 2 | ||||
-rw-r--r-- | plugins/Scriver/src/chat/tools.cpp | 2 | ||||
-rw-r--r-- | plugins/Scriver/src/commonheaders.h | 1 |
4 files changed, 1 insertions, 6 deletions
diff --git a/plugins/Scriver/src/chat/log.cpp b/plugins/Scriver/src/chat/log.cpp index a7fc260fd1..7cffea1360 100644 --- a/plugins/Scriver/src/chat/log.cpp +++ b/plugins/Scriver/src/chat/log.cpp @@ -23,8 +23,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "chat.h"
#include <math.h>
#include <mbstring.h>
-#include <shlwapi.h>
-
#ifndef EM_GETSCROLLPOS
#define EM_GETSCROLLPOS (WM_USER+221)
diff --git a/plugins/Scriver/src/chat/options.cpp b/plugins/Scriver/src/chat/options.cpp index 32d8f5124b..be785840ba 100644 --- a/plugins/Scriver/src/chat/options.cpp +++ b/plugins/Scriver/src/chat/options.cpp @@ -21,8 +21,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "../commonheaders.h"
#include "chat.h"
-#include <shlobj.h>
-#include <shlwapi.h>
#define UM_CHECKSTATECHANGE (WM_USER+100)
diff --git a/plugins/Scriver/src/chat/tools.cpp b/plugins/Scriver/src/chat/tools.cpp index f5adc887a5..43e29a7293 100644 --- a/plugins/Scriver/src/chat/tools.cpp +++ b/plugins/Scriver/src/chat/tools.cpp @@ -21,8 +21,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "../commonheaders.h"
#include "chat.h"
-#include <string.h>
-#include <shlwapi.h>
extern FONTINFO aFonts[OPTIONS_FONTCOUNT];
extern HMENU g_hMenu;
diff --git a/plugins/Scriver/src/commonheaders.h b/plugins/Scriver/src/commonheaders.h index 6271ef0aa9..1818bfd546 100644 --- a/plugins/Scriver/src/commonheaders.h +++ b/plugins/Scriver/src/commonheaders.h @@ -38,6 +38,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include <windows.h>
#include <shellapi.h>
#include <shlobj.h>
+#include <shlwapi.h>
#include <commctrl.h>
#include <commdlg.h>
#include <ole2.h>
|