diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-06-15 19:20:06 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-06-15 19:20:06 +0000 |
commit | 46eff0941450114f9dda873037d6744263dc9ad0 (patch) | |
tree | 2582c1c5f9dabc73c98b598b18d3874b2105c8ad /plugins | |
parent | 58973a21a30bf95427fd43c456e41e35c386218c (diff) |
small portion of "#ifsef Unicode" removal
git-svn-id: http://svn.miranda-ng.org/main/trunk@435 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/Db_autobackups/headers.h | 11 | ||||
-rw-r--r-- | plugins/MenuItemEx/version.h | 2 |
2 files changed, 5 insertions, 8 deletions
diff --git a/plugins/Db_autobackups/headers.h b/plugins/Db_autobackups/headers.h index f90360c533..b0c235855a 100644 --- a/plugins/Db_autobackups/headers.h +++ b/plugins/Db_autobackups/headers.h @@ -28,13 +28,10 @@ #define MS_AB_BACKUPTRGR "AB/Backuptrg"
#define MS_AB_SAVEAS "AB/SaveAs"
-#ifdef _UNICODE
- #define SUB_DIR L"\\AutoBackups"
- #define DIR L"%miranda_userdata%"
-#else
- #define SUB_DIR "\\AutoBackups"
- #define DIR "%miranda_userdata%"
-#endif
+
+#define SUB_DIR L"\\AutoBackups"
+#define DIR L"%miranda_userdata%"
+
void ShowPopup(TCHAR* text, TCHAR* header);
INT_PTR DBSaveAs(WPARAM wParam, LPARAM lParam);
diff --git a/plugins/MenuItemEx/version.h b/plugins/MenuItemEx/version.h index 59d1c2358c..355dfa6bf4 100644 --- a/plugins/MenuItemEx/version.h +++ b/plugins/MenuItemEx/version.h @@ -6,7 +6,7 @@ #define __PLUGIN_NAME "MenuItemEx (x64) plugin for Miranda IM"
#define __PLUGIN_ID 4304
#define __PLUGIN_ID_STR "4304"
-#elif (_UNICODE)
+#else (_UNICODE)
#define __PLUGIN_NAME "MenuItemEx (Unicode) plugin for Miranda IM"
#define __PLUGIN_ID 4036
#define __PLUGIN_ID_STR "4036"
|