diff options
author | slotwin <slotwin@users.noreply.github.com> | 2016-08-03 08:22:00 +0000 |
---|---|---|
committer | slotwin <slotwin@users.noreply.github.com> | 2016-08-03 08:22:00 +0000 |
commit | f0c370d7ad395c0db3001d836cd94690fa554a62 (patch) | |
tree | 61958a673e36d901725f9451de4b4c64dfdffd37 /plugins/Popup/src/font.h | |
parent | e26d6b043f2f5896e31c3e805a468c97c2f778a9 (diff) |
Popup: trying to fix broken font settings.
git-svn-id: http://svn.miranda-ng.org/main/trunk@17156 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Popup/src/font.h')
-rw-r--r-- | plugins/Popup/src/font.h | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/plugins/Popup/src/font.h b/plugins/Popup/src/font.h index c7403af354..062dbb170f 100644 --- a/plugins/Popup/src/font.h +++ b/plugins/Popup/src/font.h @@ -30,11 +30,16 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #define PU_FNT_AND_COLOR_DB MODULNAME //use eg mir_strcpy(fid.dbSettingsGroup, PU_FNT_GROUP_DB);
#define PU_FNT_PREFIX "fnt%s" //use eg mir_snprintf(fid.prefix, _countof(fid.prefix), PU_FNT_PREFIX, PU_FNT_NAME_....);
-#define PU_FNT_NAME_TITLE LPGENW("Title") //use eg mir_wstrcpy(fid.name, _T(FNT_NAME_....)) for FontIDW
-#define PU_FNT_NAME_CLOCK LPGENW("Clock")
-#define PU_FNT_NAME_TEXT LPGENW("Text")
-#define PU_FNT_NAME_ACTION LPGENW("Action")
-#define PU_FNT_NAME_HOVERED_ACTION LPGENW("Hovered action")
+#define PU_FNT_NAME_TITLE LPGEN("Title")
+#define PU_FNT_NAME_TITLEW LPGENW("Title") //use eg mir_wstrcpy(fid.name, _T(FNT_NAME_....)) for FontIDW
+#define PU_FNT_NAME_CLOCK LPGEN("Clock")
+#define PU_FNT_NAME_CLOCKW LPGENW("Clock")
+#define PU_FNT_NAME_TEXT LPGEN("Text")
+#define PU_FNT_NAME_TEXTW LPGENW("Text")
+#define PU_FNT_NAME_ACTION LPGEN("Action")
+#define PU_FNT_NAME_ACTIONW LPGENW("Action")
+#define PU_FNT_NAME_HOVERED_ACTION LPGEN("Hovered action")
+#define PU_FNT_NAME_HOVERED_ACTIONW LPGENW("Hovered action")
#define PU_COL_BACK_NAME LPGENW("Background")
#define PU_COL_BACK_SETTING "ColourBg"
|