diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2014-05-26 13:47:06 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2014-05-26 13:47:06 +0000 |
commit | 92e8bb03050786f409a5ecbe262a917822583422 (patch) | |
tree | dcce467fa9c99051f74b28baa87be8429016ae9c /plugins/Clist_modern/src/modern_skinopt.cpp | |
parent | 2ff518906958868d50648c66c3aa26a169b54fd5 (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.cpp | 9 |
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:
|