diff options
author | James Meyer <james.meyer@operamail.com> | 2012-08-07 18:23:57 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2012-08-07 18:23:57 (GMT) |
commit | c9c7d42b1b791d4056b4fc9b4b649e14983bb0db (patch) | |
tree | 71aac8915c05421341e13c256ff8b0f93e5ad4a0 /abs/core/qt/fix-assistant-crash.patch | |
parent | 65be01bf377eb5aaf0164940661b6a88735661c6 (diff) | |
download | linhes_pkgbuild-c9c7d42b1b791d4056b4fc9b4b649e14983bb0db.zip linhes_pkgbuild-c9c7d42b1b791d4056b4fc9b4b649e14983bb0db.tar.gz linhes_pkgbuild-c9c7d42b1b791d4056b4fc9b4b649e14983bb0db.tar.bz2 |
qt 4.8.2
Diffstat (limited to 'abs/core/qt/fix-assistant-crash.patch')
-rw-r--r-- | abs/core/qt/fix-assistant-crash.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/abs/core/qt/fix-assistant-crash.patch b/abs/core/qt/fix-assistant-crash.patch new file mode 100644 index 0000000..67bbbc4 --- /dev/null +++ b/abs/core/qt/fix-assistant-crash.patch @@ -0,0 +1,12 @@ +--- qt-everywhere-opensource-src-4.8.2/tools/assistant/tools/assistant/mainwindow.cpp 2012-06-26 17:37:47.334536023 +0000 ++++ qt-everywhere-opensource-src-4.8.2/tools/assistant/tools/assistant/mainwindow.cpp~ 2012-06-26 17:37:08.531487286 +0000 +@@ -944,8 +944,7 @@ + if (helpEngine.usesAppFont()) + font = helpEngine.appFont(); + +- const QWidgetList &widgets = qApp->allWidgets(); +- foreach (QWidget* widget, widgets) ++ foreach (QWidget* widget, QApplication::allWidgets()) + widget->setFont(font); + } + |