summaryrefslogtreecommitdiff
path: root/qt/qte232-for-qpe150-unpolish.patch
blob: bd10a66662e92d583b487394c03531a69218eb85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
--- src/kernel/qapplication.cpp.orig	Sun Jul 21 21:26:30 2002
+++ src/kernel/qapplication.cpp	Sun Jul 21 21:41:32 2002
@@ -930,10 +930,10 @@
 void QApplication::setStyle( QStyle *style )
 {
     QStyle* old = app_style;
-    app_style = style;
 
     if ( startingUp() ) {
 	delete old;
+	app_style = style;
 	return;
     }
 
@@ -954,6 +954,8 @@
 	old->unPolish( qApp );
     }
 
+    app_style = style;
+ 
     // take care of possible palette requirements of certain gui
     // styles. Do it before polishing the application since the style
     // might call QApplication::setStyle() itself