author | sandman <sandman> | 2002-07-21 19:54:50 (UTC) |
---|---|---|
committer | sandman <sandman> | 2002-07-21 19:54:50 (UTC) |
commit | 8abe7e0604c930cbb46308febeec67d5bf70d255 (patch) (side-by-side diff) | |
tree | 4e52ed8206b907269ceea85d4c8fa0820377c6e7 /qt | |
parent | 68e2730e7e5a72bbdb5086334485d98ac8dee5c8 (diff) | |
download | opie-8abe7e0604c930cbb46308febeec67d5bf70d255.zip opie-8abe7e0604c930cbb46308febeec67d5bf70d255.tar.gz opie-8abe7e0604c930cbb46308febeec67d5bf70d255.tar.bz2 |
Patch for style change bug in Qt. This was the "switching the first time
to liquid crash".
-rw-r--r-- | qt/qte232-for-qpe150-unpolish.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/qt/qte232-for-qpe150-unpolish.patch b/qt/qte232-for-qpe150-unpolish.patch new file mode 100644 index 0000000..bd10a66 --- a/dev/null +++ b/qt/qte232-for-qpe150-unpolish.patch @@ -0,0 +1,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 |