diff options
author | Dart Raiden <wowemuh@gmail.com> | 2016-07-12 15:01:45 +0000 |
---|---|---|
committer | Dart Raiden <wowemuh@gmail.com> | 2016-07-12 15:01:45 +0000 |
commit | ffb9e28990704074a63fc87d1a92621727a4c951 (patch) | |
tree | 6bd77671442d467a61a1af99e49f897255e76642 /plugins/MirandaG15 | |
parent | 11c23668f31609d3119366302f4327f805a2d630 (diff) |
reverted [17088]: there is a better way via lpgen.js
git-svn-id: http://svn.miranda-ng.org/main/trunk@17089 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirandaG15')
-rw-r--r-- | plugins/MirandaG15/src/CConfig.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/MirandaG15/src/CConfig.cpp b/plugins/MirandaG15/src/CConfig.cpp index 9782bef519..337cad2886 100644 --- a/plugins/MirandaG15/src/CConfig.cpp +++ b/plugins/MirandaG15/src/CConfig.cpp @@ -250,13 +250,13 @@ int CConfig::InitOptionsDialog(WPARAM wParam, LPARAM) OPTIONSDIALOGPAGE odp = { 0 };
odp.position = 847000000;
odp.hInstance = hInstance;
- odp.pszGroup = "MirandaG15";
+ odp.pszGroup = LPGEN("MirandaG15");
odp.flags = ODPF_BOLDGROUPS;
// ---------------------
odp.pszTemplate = MAKEINTRESOURCEA(IDD_FONTS);
odp.pszTitle = LPGEN("Appearance");
- odp.pszGroup = "MirandaG15";
+ odp.pszGroup = LPGEN("MirandaG15");
odp.pfnDlgProc = CConfig::AppearanceDlgProc;
Options_AddPage(wParam, &odp);
|