From 3e005910825da456031fd3e6f595cce549267309 Mon Sep 17 00:00:00 2001 From: Enrico Forestieri Date: Thu, 7 Jan 2010 16:32:33 +0000 Subject: [PATCH] This workaround is also needed for Qt 4.3 as the bug was fixed in Qt 4.4.0: http://qt.nokia.com/developer/task-tracker/index_html?method=entry&id=101276 git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32836 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/frontends/qt4/GuiProgressView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontends/qt4/GuiProgressView.cpp b/src/frontends/qt4/GuiProgressView.cpp index 933d00080e..7644d94adf 100644 --- a/src/frontends/qt4/GuiProgressView.cpp +++ b/src/frontends/qt4/GuiProgressView.cpp @@ -64,7 +64,7 @@ GuiProgressView::GuiProgressView(GuiView & parent, Qt::DockWidgetArea area, Qt::WindowFlags flags) : DockView(parent, "progress", "Debug/Progress window", area, flags) { widget_ = new ProgressViewWidget(); -#if QT_VERSION < 0x040300 +#if QT_VERSION < 0x040400 widget_->scrollArea->setWidget(widget_->scrollAreaWidgetContents); #endif setWidget(widget_); -- 2.39.5