diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2014-04-21 17:39:45 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2014-04-21 17:39:45 +0000 |
commit | c13392f8596e858110dc4c61fbdf1d41e47cc8a9 (patch) | |
tree | 7eb5a3790ce4069393addff302d24306a496a04e /plugins/Popup/src/font.h | |
parent | d1851afba0e105ab2b0c7e8ad5e72a4dfbc5dd71 (diff) |
- Added lParam to POPUPCLASS
- Removed MS_POPUP_ISSECONDLINESHOWN
- Support for mutating popups in Facebook
git-svn-id: http://svn.miranda-ng.org/main/trunk@9021 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Popup/src/font.h')
-rw-r--r-- | plugins/Popup/src/font.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/plugins/Popup/src/font.h b/plugins/Popup/src/font.h index 13674ddd2b..c22a08811f 100644 --- a/plugins/Popup/src/font.h +++ b/plugins/Popup/src/font.h @@ -29,19 +29,19 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #define PU_FNT_AND_COLOR_DB MODULNAME //use eg strcpy(fid.dbSettingsGroup, PU_FNT_GROUP_DB);
#define PU_FNT_PREFIX "fnt%s" //use eg mir_snprintf(fid.prefix, sizeof(fid.prefix), PU_FNT_PREFIX, PU_FNT_NAME_....);
-#define PU_FNT_NAME_TITLE "Title" //use eg lstrcpy(fid.name, _T(FNT_NAME_....)) for FontIDT
-#define PU_FNT_NAME_CLOCK "Clock"
-#define PU_FNT_NAME_TEXT "Text"
+#define PU_FNT_NAME_TITLE LPGENT("Title") //use eg lstrcpy(fid.name, _T(FNT_NAME_....)) for FontIDT
+#define PU_FNT_NAME_CLOCK LPGENT("Clock")
+#define PU_FNT_NAME_TEXT LPGENT("Text")
-#define PU_COL_BACK_NAME "Background"
+#define PU_COL_BACK_NAME LPGENT("Background")
#define PU_COL_BACK_SETTING "ColourBg"
-#define PU_COL_BORD_NAME "Border"
+#define PU_COL_BORD_NAME LPGENT("Border")
#define PU_COL_BORD_SETTING "ColourBorder"
-#define PU_COL_SIDE_NAME "Sidebar"
+#define PU_COL_SIDE_NAME LPGENT("Sidebar")
#define PU_COL_SIDE_SETTING "ColourSidebar"
-#define PU_COL_LINE_NAME "Title underline"
+#define PU_COL_LINE_NAME LPGENT("Title underline")
#define PU_COL_LINE_SETTING "ColourUnderline"
-#define PU_COL_AVAT_NAME "Avatar Border"
+#define PU_COL_AVAT_NAME LPGENT("Avatar Border")
#define PU_COL_AVAT_SETTING "ColourAvatarBorder"
struct PopupFonts
|