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
This commit is contained in:
Enrico Forestieri 2010-01-07 16:32:33 +00:00
parent e21867818e
commit 3e00591082

View File

@ -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_);