From b58046b1fc2b9b12e38225fe84145adfe14882f8 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Mon, 29 Dec 2008 11:31:57 +0000 Subject: [PATCH] - Use QPlastiqueStyle as a default --- src/main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index 3cdce7e97..7557b7b69 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -85,6 +85,8 @@ void useStyle(QApplication *app, int style){ app->setStyle(new QWindowsXPStyle()); break; #endif + default: + app->setStyle(new QPlastiqueStyle()); } }