]> git.lyx.org Git - features.git/commitdiff
* src/frontends/qt4/QLToolbar.C
authorGeorg Baum <Georg.Baum@post.rwth-aachen.de>
Wed, 13 Sep 2006 17:04:42 +0000 (17:04 +0000)
committerGeorg Baum <Georg.Baum@post.rwth-aachen.de>
Wed, 13 Sep 2006 17:04:42 +0000 (17:04 +0000)
(QLToolbar::QLToolbar): Fix initialization order

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14989 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt4/QLToolbar.C

index 8941be22fac2450fd572d1ad9dde7247f2462d48..075ce5817bad2e0075960164e7445f918e4d29a4 100644 (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();