From 428bf0cbd77813a43094cb5c984436deff251936 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Fri, 29 Jul 2016 12:36:34 +0000 Subject: no more TCHARs git-svn-id: http://svn.miranda-ng.org/main/trunk@17143 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/SpellChecker/src/options.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/SpellChecker/src/options.cpp') diff --git a/plugins/SpellChecker/src/options.cpp b/plugins/SpellChecker/src/options.cpp index 21309b391a..8f57cb2ed1 100644 --- a/plugins/SpellChecker/src/options.cpp +++ b/plugins/SpellChecker/src/options.cpp @@ -93,7 +93,7 @@ void LoadOptions() } DBVARIANT dbv; - if (!db_get_ts(NULL, MODULE_NAME, "DefaultLanguage", &dbv)) { + if (!db_get_ws(NULL, MODULE_NAME, "DefaultLanguage", &dbv)) { mir_wstrncpy(opts.default_language, dbv.ptszVal, _countof(opts.default_language)); db_free(&dbv); } @@ -212,7 +212,7 @@ static INT_PTR CALLBACK OptionsDlgProc(HWND hwndDlg, UINT msg, WPARAM wParam, LP int sel = SendDlgItemMessage(hwndDlg, IDC_DEF_LANG, CB_GETCURSEL, 0, 0); if (sel >= languages.getCount()) sel = 0; - db_set_ts(NULL, MODULE_NAME, "DefaultLanguage", + db_set_ws(NULL, MODULE_NAME, "DefaultLanguage", (wchar_t *)languages[sel]->language); mir_wstrcpy(opts.default_language, languages[sel]->language); } -- cgit v1.2.3