diff options
author | George Hazan <george.hazan@gmail.com> | 2013-03-24 10:14:44 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-03-24 10:14:44 +0000 |
commit | c1b07589623a9d8401982e10a38faaddecd42496 (patch) | |
tree | f4458e6fc2a6dceac7672794316ef69aa81c993c /plugins/StatusPlugins/StartupStatus/startupstatus.h | |
parent | 16b08498841634e581ef4e366d9a0bb533e6b513 (diff) |
StartupStatus:
- Unicode profile names;
- the correct profile is displayed in the confirmation dialog
- special resource files for VC6 removed;
- code cleaning;
- version bump.
git-svn-id: http://svn.miranda-ng.org/main/trunk@4172 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/StatusPlugins/StartupStatus/startupstatus.h')
-rw-r--r-- | plugins/StatusPlugins/StartupStatus/startupstatus.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/plugins/StatusPlugins/StartupStatus/startupstatus.h b/plugins/StatusPlugins/StartupStatus/startupstatus.h index a54be8f70c..f7ab3e1b92 100644 --- a/plugins/StatusPlugins/StartupStatus/startupstatus.h +++ b/plugins/StatusPlugins/StartupStatus/startupstatus.h @@ -50,11 +50,10 @@ struct PROFILEOPTIONS : public MZeroedObject __inline ~PROFILEOPTIONS()
{
delete ps;
- if (szName != NULL)
- mir_free(szName);
+ mir_free(tszName);
}
- char *szName;
+ TCHAR *tszName;
TSettingsList* ps;
BOOL showDialog;
BOOL createTtb;
|