From 39bd74cbd4d2dbe536d003c15d17f5eefd572394 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Fri, 8 Aug 2014 19:55:34 +0000 Subject: fixed writing current langpack in db git-svn-id: http://svn.miranda-ng.org/main/trunk@10130 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- src/modules/langpack/lpopts.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/modules/langpack/lpopts.cpp') diff --git a/src/modules/langpack/lpopts.cpp b/src/modules/langpack/lpopts.cpp index b1c11ae665..5ea238b859 100644 --- a/src/modules/langpack/lpopts.cpp +++ b/src/modules/langpack/lpopts.cpp @@ -166,7 +166,9 @@ INT_PTR CALLBACK DlgLangpackOpt(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lP for (int i = 0; i < count; i++) { LANGPACK_INFO *pack = (LANGPACK_INFO*)ComboBox_GetItemData(hwndList, i); if (i == idx) { - db_set_ws(NULL, "Langpack", "Current", pack->tszFileName); + db_set_ts(NULL, "Langpack", "Current", pack->tszFileName); + PathToAbsoluteT(_T("\\mirandaboot.ini"), tszPath); + WritePrivateProfileString(_T("Language"), _T("DefaultLanguage"), pack->tszFileName, tszPath); lstrcpy(tszPath, pack->tszFullPath); pack->flags |= LPF_ENABLED; } -- cgit v1.2.3