From: Georg Baum Date: Wed, 13 Sep 2006 17:04:42 +0000 (+0000) Subject: * src/frontends/qt4/QLToolbar.C X-Git-Tag: 1.6.10~12585 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=a82ca1eed172788828f082d109e190b9df48e5bd;p=features.git * 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 --- diff --git a/src/frontends/qt4/QLToolbar.C b/src/frontends/qt4/QLToolbar.C index 8941be22fa..075ce5817b 100644 --- a/src/frontends/qt4/QLToolbar.C +++ b/src/frontends/qt4/QLToolbar.C @@ -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();