diff options
author | George Hazan <ghazan@miranda.im> | 2018-11-10 17:26:55 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-11-10 17:26:55 +0300 |
commit | 68fa25f827855c869c730327b79acfc1ef5576b1 (patch) | |
tree | 7f531e6016c4ae8c889ec7cc60ff586be9e2532f /plugins | |
parent | a730b9b7b050ebb075e873c417eaf7a87fc979e5 (diff) |
keeping copy of string is safer that saving pointer to it (might be damaged by langpack restart)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/Clist_modern/src/modern_clistsettings.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Clist_modern/src/modern_clistsettings.cpp b/plugins/Clist_modern/src/modern_clistsettings.cpp index ae75442627..31ea588c24 100644 --- a/plugins/Clist_modern/src/modern_clistsettings.cpp +++ b/plugins/Clist_modern/src/modern_clistsettings.cpp @@ -24,7 +24,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "stdafx.h"
-wchar_t* UnknownConctactTranslatedName = nullptr;
+CMStringW UnknownConctactTranslatedName;
void cliFreeCacheItem(ClcCacheEntry *p)
{
|