summaryrefslogtreecommitdiffstats
path: root/redhat/applications/gtk-qt-engine/gtk-qt-engine-14.0.0-fix_gtk3_segv.patch
diff options
context:
space:
mode:
authorFrançois Andriot <albator78@libertysurf.fr>2013-07-24 11:25:02 +0200
committerFrançois Andriot <albator78@libertysurf.fr>2013-07-24 11:25:02 +0200
commit0c4b32438a57f52601dfe66d133bd263a5d304ee (patch)
tree9389a6db04f282ab54a2cc4ca8f55124285a5fa4 /redhat/applications/gtk-qt-engine/gtk-qt-engine-14.0.0-fix_gtk3_segv.patch
parent700ec263535470631ef4f6fb816000500eb4227e (diff)
downloadtde-packaging-0c4b32438a57f52601dfe66d133bd263a5d304ee.tar.gz
tde-packaging-0c4b32438a57f52601dfe66d133bd263a5d304ee.zip
RPM Packaging: updates for R14
Diffstat (limited to 'redhat/applications/gtk-qt-engine/gtk-qt-engine-14.0.0-fix_gtk3_segv.patch')
-rw-r--r--redhat/applications/gtk-qt-engine/gtk-qt-engine-14.0.0-fix_gtk3_segv.patch28
1 files changed, 28 insertions, 0 deletions
diff --git a/redhat/applications/gtk-qt-engine/gtk-qt-engine-14.0.0-fix_gtk3_segv.patch b/redhat/applications/gtk-qt-engine/gtk-qt-engine-14.0.0-fix_gtk3_segv.patch
new file mode 100644
index 000000000..73021cb11
--- /dev/null
+++ b/redhat/applications/gtk-qt-engine/gtk-qt-engine-14.0.0-fix_gtk3_segv.patch
@@ -0,0 +1,28 @@
+--- gtk-qt-engine/kcm_gtk/kcmgtk.cpp.ORI 2013-07-23 23:35:16.614406882 +0200
++++ gtk-qt-engine/kcm_gtk/kcmgtk.cpp 2013-07-23 23:56:39.121594541 +0200
+@@ -261,13 +261,21 @@
+ }
+ }
+
++ bool gtk3installed = false;
+ widget->styleBox3->clear();
+ TQStringList otherGtk3Styles = gtk3Themes.keys();
+- otherGtk3Styles.remove(otherGtk3Styles.find("tdegtk"));
+- widget->styleBox3->insertStringList(otherGtk3Styles);
+-
+- bool gtk3installed = (gtk3Themes.find("tdegtk") != gtk3Themes.end());
++ if(!otherGtk3Styles.empty()) {
++ otherGtk3Styles.remove(otherGtk3Styles.find("tdegtk"));
++ if(!otherGtk3Styles.empty()) {
++ gtk3installed = (gtk3Themes.find("tdegtk") != gtk3Themes.end());
++ }
++ }
++ if(gtk3installed) {
++ widget->styleBox3->insertStringList(otherGtk3Styles);
++ }
+ widget->styleKde3->setEnabled(gtk3installed);
++ widget->styleBox3->setEnabled(gtk3installed);
++ widget->styleOther3->setEnabled(gtk3installed);
+ widget->warning4->setHidden(gtk3installed);
+ widget->warning5->setHidden(gtk3installed);
+ widget->warning6->setHidden(gtk3installed);