diff options
| author | George Hazan <ghazan@miranda.im> | 2018-07-20 13:25:21 +0300 |
|---|---|---|
| committer | George Hazan <ghazan@miranda.im> | 2018-07-20 13:25:21 +0300 |
| commit | 509fbd91ed545d05cc266a80ec19fe7b9c9d28db (patch) | |
| tree | 09c2d97d212c0820f6d5e85d7e583b8a56b26ef8 /src/core/stduserinfo | |
| parent | c90b4443c10b08eeae9466428255fe8ff7b48d6d (diff) | |
we don't need two name sets for the same array of functions
Diffstat (limited to 'src/core/stduserinfo')
| -rw-r--r-- | src/core/stduserinfo/src/stdinfo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/stduserinfo/src/stdinfo.cpp b/src/core/stduserinfo/src/stdinfo.cpp index 22f17335fe..338007fb4f 100644 --- a/src/core/stduserinfo/src/stdinfo.cpp +++ b/src/core/stduserinfo/src/stdinfo.cpp @@ -187,14 +187,14 @@ static void SetValue(HWND hwndDlg, int idCtrl, MCONTACT hContact, char *szModule unspecified = (special == SVS_ZEROISUNSPEC && dbv.pszVal[0] == '\0');
if (!unspecified) {
WCHAR *wszStr;
- Utf8Decode(dbv.pszVal, &wszStr);
+ mir_utf8decode(dbv.pszVal, &wszStr);
SetDlgItemTextW(hwndDlg, idCtrl, TranslateW(wszStr));
mir_free(wszStr);
goto LBL_Exit;
}
pstr = dbv.pszVal;
- Utf8Decode(dbv.pszVal, nullptr);
+ mir_utf8decode(dbv.pszVal, nullptr);
break;
default:
|
