mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
Fix FindAndReplace dialog for Qt < 4.4.0.
For reasons unknown to me, this also fixes the scroll bar issue! git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@31463 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
fca8ba713f
commit
3f371011f9
@ -47,6 +47,9 @@ FindAndReplaceWidget::FindAndReplaceWidget(GuiView & view)
|
||||
: view_(view)
|
||||
{
|
||||
setupUi(this);
|
||||
#if QT_VERSION < 0x040400
|
||||
scrollArea->setWidget(scrollAreaWidgetContents);
|
||||
#endif
|
||||
find_work_area_->setGuiView(view_);
|
||||
find_work_area_->init();
|
||||
setFocusProxy(find_work_area_);
|
||||
|
Loading…
Reference in New Issue
Block a user