summaryrefslogtreecommitdiff
path: root/plugins/HistoryStats
diff options
context:
space:
mode:
authorRozhuk Ivan <rozhuk.im@gmail.com>2015-03-24 02:53:25 +0000
committerRozhuk Ivan <rozhuk.im@gmail.com>2015-03-24 02:53:25 +0000
commit65aaaa950c793e9408a42d352db919d487ef2a2f (patch)
treecbbdbff8a721e5fd6efa78754ca75a05b625ac3c /plugins/HistoryStats
parentb2e1ec3eb79227ccea43e270d5ed1917cc0dcc53 (diff)
* multiple WINE bug fixes over IsDialogMessage(), bug rep: https://bugs.winehq.org/show_bug.cgi?id=38276
git-svn-id: http://svn.miranda-ng.org/main/trunk@12489 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/HistoryStats')
-rw-r--r--plugins/HistoryStats/src/statistic.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/HistoryStats/src/statistic.cpp b/plugins/HistoryStats/src/statistic.cpp
index 61647087cd..85ee17b7be 100644
--- a/plugins/HistoryStats/src/statistic.cpp
+++ b/plugins/HistoryStats/src/statistic.cpp
@@ -1274,7 +1274,7 @@ bool Statistic::createStatistics()
break;
}
- if (!IsDialogMessage(msg.hwnd, &msg)) {
+ if (msg.hwnd == NULL || !IsDialogMessage(msg.hwnd, &msg)) { /* Wine fix. */
TranslateMessage(&msg);
DispatchMessage(&msg);
}