062fdbdbb9
Add upstream patches: - Fix moc parsing correctly glibc 2.25+ system headers - 0001-Fix-exclusion-of-anonymous-ciphers.patch -- Exclude more ciphers from being used by default - fix-medium-font.diff -- fix bolder fonts in qt4 apps [QTBUG#27301] - fix_assistant_segfault_QTBUG-25324.patch [QTBUG#25324]
15 lines
660 B
Diff
15 lines
660 B
Diff
Index: qt-everywhere-opensource-src-4.8.3/tools/assistant/tools/assistant/mainwindow.cpp
|
|
===================================================================
|
|
--- qt-everywhere-opensource-src-4.8.3.orig/tools/assistant/tools/assistant/mainwindow.cpp
|
|
+++ qt-everywhere-opensource-src-4.8.3/tools/assistant/tools/assistant/mainwindow.cpp
|
|
@@ -945,8 +945,7 @@ void MainWindow::updateApplicationFont()
|
|
if (helpEngine.usesAppFont())
|
|
font = helpEngine.appFont();
|
|
|
|
- const QWidgetList &widgets = qApp->allWidgets();
|
|
- foreach (QWidget* widget, widgets)
|
|
+ foreach (QWidget* widget, QApplication::allWidgets())
|
|
widget->setFont(font);
|
|
}
|
|
|