diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-07-21 20:03:47 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-07-21 20:03:47 +0000 |
commit | d8092ec197c92010008c5e4d2a22ad71a883f8d8 (patch) | |
tree | aee6db85db449621fed4c47f02f8a646ab074e2e /plugins/Clist_modern | |
parent | 0530595f1de51fa7aee74b42baf2e48dc0a9814b (diff) |
Clist_modern: vc2015 compilation fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@14607 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Clist_modern')
-rw-r--r-- | plugins/Clist_modern/src/modern_clcopts.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/Clist_modern/src/modern_clcopts.cpp b/plugins/Clist_modern/src/modern_clcopts.cpp index 6c63d290a0..0229e36828 100644 --- a/plugins/Clist_modern/src/modern_clcopts.cpp +++ b/plugins/Clist_modern/src/modern_clcopts.cpp @@ -57,10 +57,10 @@ struct FontOptionsList { char size;
};
-#define CLCGROUP LPGENT("Contact list")_T("/")LPGENT("Contact names")
-#define CLCLINESGROUP LPGENT("Contact list")_T("/")LPGENT("Row items")
-#define CLCFRAMESGROUP LPGENT("Contact list")_T("/")LPGENT("Frame texts")
-#define CLCCOLOURSGROUP LPGENT("Contact list")_T("/")LPGENT("Special colors")
+#define CLCGROUP LPGENT("Contact list") _T("/") LPGENT("Contact names")
+#define CLCLINESGROUP LPGENT("Contact list") _T("/") LPGENT("Row items")
+#define CLCFRAMESGROUP LPGENT("Contact list") _T("/") LPGENT("Frame texts")
+#define CLCCOLOURSGROUP LPGENT("Contact list") _T("/") LPGENT("Special colors")
#define DEFAULT_COLOUR RGB(0, 0, 0)
#define DEFAULT_GREYCOLOUR RGB(128, 128, 128)
|