summaryrefslogtreecommitdiff
path: root/plugins/Utils/mir_options.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2012-07-18 21:04:10 +0000
committerGeorge Hazan <george.hazan@gmail.com>2012-07-18 21:04:10 +0000
commit02413392a2b40fcebe5f178c776402a9ce148604 (patch)
tree300d3327a04f932138fa820e9e10755bc58b7235 /plugins/Utils/mir_options.cpp
parentc9700ede2ef5444c6f754322e7c255441d6d6721 (diff)
compilation fix for MyDetails
git-svn-id: http://svn.miranda-ng.org/main/trunk@1027 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Utils/mir_options.cpp')
-rw-r--r--plugins/Utils/mir_options.cpp21
1 files changed, 1 insertions, 20 deletions
diff --git a/plugins/Utils/mir_options.cpp b/plugins/Utils/mir_options.cpp
index 6f8a831e5d..c52995471e 100644
--- a/plugins/Utils/mir_options.cpp
+++ b/plugins/Utils/mir_options.cpp
@@ -48,26 +48,7 @@ static TCHAR* MyDBGetContactSettingTString(HANDLE hContact, char* module, char*
if (!DBGetContactSettingTString(hContact, module, setting, &dbv))
{
-
- if (dbv.type == DBVT_ASCIIZ)
- {
- MultiByteToWideChar(CP_ACP, 0, dbv.pszVal, -1, out, (int)len);
- }
- else if (dbv.type == DBVT_UTF8)
- {
- MultiByteToWideChar(CP_UTF8, 0, dbv.pszVal, -1, out, (int)len);
- }
- else if (dbv.type == DBVT_WCHAR)
- {
- lstrcpyn(out, dbv.pwszVal, (int)len);
- }
-
- else
- {
- if (def != NULL)
- lstrcpyn(out, def, (int)len);
- }
-
+ lstrcpyn(out, dbv.ptszVal, (int)len);
DBFreeVariant(&dbv);
}
else