summaryrefslogtreecommitdiff
path: root/plugins/Clist_modern/src/modern_skinopt.cpp
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2014-05-26 13:47:06 +0000
committerKirill Volinsky <mataes2007@gmail.com>2014-05-26 13:47:06 +0000
commit92e8bb03050786f409a5ecbe262a917822583422 (patch)
treedcce467fa9c99051f74b28baa87be8429016ae9c /plugins/Clist_modern/src/modern_skinopt.cpp
parent2ff518906958868d50648c66c3aa26a169b54fd5 (diff)
added label with skin folder path
git-svn-id: http://svn.miranda-ng.org/main/trunk@9317 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Clist_modern/src/modern_skinopt.cpp')
-rw-r--r--plugins/Clist_modern/src/modern_skinopt.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/plugins/Clist_modern/src/modern_skinopt.cpp b/plugins/Clist_modern/src/modern_skinopt.cpp
index 9586f0003b..5d7f0955e1 100644
--- a/plugins/Clist_modern/src/modern_skinopt.cpp
+++ b/plugins/Clist_modern/src/modern_skinopt.cpp
@@ -97,10 +97,11 @@ INT_PTR CALLBACK DlgSkinOpts(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lPara
case WM_INITDIALOG:
{
- TranslateDialogDefault( hwndDlg );
- HTREEITEM it = FillAvailableSkinList( hwndDlg );
- HWND wnd = GetDlgItem( hwndDlg, IDC_TREE1 );
- TreeView_SelectItem( wnd, it );
+ TranslateDialogDefault(hwndDlg);
+ SetWindowText(GetDlgItem(hwndDlg, IDC_SKINFOLDERLABEL), SkinsFolder);
+ HTREEITEM it = FillAvailableSkinList(hwndDlg);
+ HWND wnd = GetDlgItem(hwndDlg, IDC_TREE1);
+ TreeView_SelectItem(wnd, it);
}
return 0;
case WM_COMMAND: