diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2014-06-14 15:47:51 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2014-06-14 15:47:51 +0000 |
commit | 19ac5de64bb31531a8d3ba472c24d6249a1ee448 (patch) | |
tree | b9b5a1d7d59e276c61700cec020add91526f5b33 /plugins/NotifyAnything/src/common.h | |
parent | b900c042c4f3fa37c384b80db883cab919f2d752 (diff) |
unicode strings
git-svn-id: http://svn.miranda-ng.org/main/trunk@9470 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/NotifyAnything/src/common.h')
-rw-r--r-- | plugins/NotifyAnything/src/common.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/NotifyAnything/src/common.h b/plugins/NotifyAnything/src/common.h index 0b44f0e8db..3b2ee7f221 100644 --- a/plugins/NotifyAnything/src/common.h +++ b/plugins/NotifyAnything/src/common.h @@ -33,7 +33,7 @@ struct NASettings { bool local_only, debug_messages, log_to_file, use_pcspeaker, allow_execute;
sound_t sound;
int port;
- std::string password, log_filename;
+ std::tstring password, log_filename;
};
extern NASettings g_settings;
@@ -46,5 +46,5 @@ void load_settings(); int OptionsInitialize(WPARAM wParam, LPARAM lParam);
-extern std::string g_mirandaDir;
+extern std::tstring g_mirandaDir;
#define LOG_ID LPGEN("NotifyAnything")
|