diff options
Diffstat (limited to 'plugins/Clist_modern/src/hdr')
-rw-r--r-- | plugins/Clist_modern/src/hdr/modern_commonheaders.h | 6 | ||||
-rw-r--r-- | plugins/Clist_modern/src/hdr/modern_tstring.h | 8 |
2 files changed, 1 insertions, 13 deletions
diff --git a/plugins/Clist_modern/src/hdr/modern_commonheaders.h b/plugins/Clist_modern/src/hdr/modern_commonheaders.h index b8088cc8ff..83bbdbd1dd 100644 --- a/plugins/Clist_modern/src/hdr/modern_commonheaders.h +++ b/plugins/Clist_modern/src/hdr/modern_commonheaders.h @@ -182,11 +182,7 @@ int CLUI_ShowWindowMod(HWND hwnd, int cmd); void MakeButtonSkinned(HWND hWnd);
-#ifdef UNICODE
- #define GSMDF_TCHAR_MY GSMDF_TCHAR|CNF_UNICODE
-#else
- #define GSMDF_TCHAR_MY 0
-#endif
+#define GSMDF_TCHAR_MY GSMDF_TCHAR|CNF_UNICODE
#ifndef LWA_COLORKEY
#define LWA_COLORKEY 0x00000001
diff --git a/plugins/Clist_modern/src/hdr/modern_tstring.h b/plugins/Clist_modern/src/hdr/modern_tstring.h index 17fc9cf50c..00948179d8 100644 --- a/plugins/Clist_modern/src/hdr/modern_tstring.h +++ b/plugins/Clist_modern/src/hdr/modern_tstring.h @@ -4,7 +4,6 @@ #include "MString.h"
-#ifdef UNICODE
typedef CMStringA astring;
typedef CMStringW wstring;
@@ -49,10 +48,3 @@ public: operator mbstring() { return mbstring( this->c_str()); }
};
-#else
-typedef CMStringA astring;
-typedef CMStringA wstring;
-typedef CMStringA tstring;
-typedef CMStringA mbstring;
-
-#endif
|