* src/frontends/qt4/QLToolbar.C

(QLToolbar::QLToolbar): Fix initialization order


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14989 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Georg Baum 2006-09-13 17:04:42 +00:00
parent 37f22e93a2
commit a82ca1eed1

View File

@ -147,8 +147,7 @@ void QLayoutBox::selected(const QString & str)
QLToolbar::QLToolbar(ToolbarBackend::Toolbar const & tbb, GuiView & owner)
: owner_(owner),
QToolBar(qt_(tbb.gui_name), &owner)
: QToolBar(qt_(tbb.gui_name), &owner), owner_(owner)
{
// give visual separation between adjacent toolbars
addSeparator();