author | sandman <sandman> | 2002-08-30 02:50:56 (UTC) |
---|---|---|
committer | sandman <sandman> | 2002-08-30 02:50:56 (UTC) |
commit | 57e4c1b05208650eaac76268eb9bb25a1caa2184 (patch) (side-by-side diff) | |
tree | 6389ea3b2799dbbb731d1780102568642129e335 /qt/qte233-for-opie091-unpolish.patch | |
parent | c4af3c78c9f6f073c1e0b11b331a2e24df80b9ff (diff) | |
download | opie-57e4c1b05208650eaac76268eb9bb25a1caa2184.zip opie-57e4c1b05208650eaac76268eb9bb25a1caa2184.tar.gz opie-57e4c1b05208650eaac76268eb9bb25a1caa2184.tar.bz2 |
New/ported patches for Qt/E 2.3.3
Diffstat (limited to 'qt/qte233-for-opie091-unpolish.patch') (more/less context) (ignore whitespace changes)
-rw-r--r-- | qt/qte233-for-opie091-unpolish.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/qt/qte233-for-opie091-unpolish.patch b/qt/qte233-for-opie091-unpolish.patch new file mode 100644 index 0000000..ba9e9b3 --- a/dev/null +++ b/qt/qte233-for-opie091-unpolish.patch @@ -0,0 +1,23 @@ +--- src.orig/kernel/qapplication.cpp Mon Mar 18 02:11:25 2002 ++++ src/kernel/qapplication.cpp Fri Aug 30 04:28:34 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 |