diff options
author | George Hazan <george.hazan@gmail.com> | 2012-06-11 07:50:47 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-06-11 07:50:47 +0000 |
commit | 26791cc7ee10c73b00df9cc3cc38ff7ba06d8102 (patch) | |
tree | 679a23eaf457df37e2f07b45f917f7dc5e0a02fc /plugins/Console/Console.c | |
parent | 4ad68f3d27feb1307e76c0cf25617a0bcf9de507 (diff) |
- version resource moved to the separate file
- minor change for the plugin's start
git-svn-id: http://svn.miranda-ng.org/main/trunk@386 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Console/Console.c')
-rw-r--r-- | plugins/Console/Console.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/Console/Console.c b/plugins/Console/Console.c index eea28e711f..9d4567da11 100644 --- a/plugins/Console/Console.c +++ b/plugins/Console/Console.c @@ -724,8 +724,7 @@ static INT_PTR CALLBACK ConsoleDlgProc(HWND hwndDlg,UINT message,WPARAM wParam,L {
SAVEWINDOWPOS swp;
swp.hwnd=hwndDlg; swp.hContact=NULL; swp.szModule="Console"; swp.szNamePrefix="Console";
- CallService(MS_UTILS_RESTOREWINDOWPOSITION,RWPF_NOACTIVATE,(LPARAM)&swp);
- ShowWindow(hwndDlg,SW_HIDE);
+ CallService(MS_UTILS_RESTOREWINDOWPOSITION, RWPF_HIDDEN, (LPARAM)&swp);
}
if (CallService(MS_DB_GETPROFILENAME,(WPARAM)512,(LPARAM)ProfileName))
|