From 6b0e7f111c5bc14edd03c53cb521b3a1278ca2e9 Mon Sep 17 00:00:00 2001 From: Kurt Pattyn Date: Sat, 21 Dec 2013 14:50:14 +0100 Subject: Windows platform plugin: Add missing case statement Change-Id: I9b9fc6cf000b262277711374e0a2fe119328849e Reviewed-by: Friedemann Kleint Reviewed-by: Konstantin Ritt --- src/plugins/platforms/windows/qwindowsdialoghelpers.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/plugins/platforms/windows/qwindowsdialoghelpers.cpp b/src/plugins/platforms/windows/qwindowsdialoghelpers.cpp index 832ce24354..7ba48fe0cb 100644 --- a/src/plugins/platforms/windows/qwindowsdialoghelpers.cpp +++ b/src/plugins/platforms/windows/qwindowsdialoghelpers.cpp @@ -2132,6 +2132,9 @@ bool useHelper(QPlatformTheme::DialogType type) break; #endif case QPlatformTheme::FontDialog: + case QPlatformTheme::MessageDialog: + break; + default: break; } return false; @@ -2160,6 +2163,9 @@ QPlatformDialogHelper *createHelper(QPlatformTheme::DialogType type) break; #endif case QPlatformTheme::FontDialog: + case QPlatformTheme::MessageDialog: + break; + default: break; } return 0; -- cgit v1.2.3