diff options
author | George Hazan <ghazan@miranda.im> | 2018-04-08 17:42:57 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-04-08 17:42:57 +0300 |
commit | 637160171257b00778e12ce46f9e4231e2c41621 (patch) | |
tree | 0e1c0521b53422bb3a91bd5f73c311566e83559c /plugins | |
parent | 048ef61d78aba395988abe8621ba29437d281472 (diff) |
missed break
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/SplashScreen/src/options.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/SplashScreen/src/options.cpp b/plugins/SplashScreen/src/options.cpp index a3f76b5dce..4fe7173ad6 100644 --- a/plugins/SplashScreen/src/options.cpp +++ b/plugins/SplashScreen/src/options.cpp @@ -235,8 +235,8 @@ INT_PTR CALLBACK DlgProcOptions(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lP return 0;
else
SendMessage(GetParent(hwndDlg), PSM_CHANGED, 0, 0);
- break;
}
+ break;
case WM_NOTIFY:
if (((LPNMHDR)lParam)->idFrom == 0) {
|