]> git.lyx.org Git - features.git/commitdiff
Mac compil fixes.
authorAbdelrazak Younes <younes@lyx.org>
Thu, 5 Jun 2008 14:40:41 +0000 (14:40 +0000)
committerAbdelrazak Younes <younes@lyx.org>
Thu, 5 Jun 2008 14:40:41 +0000 (14:40 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25143 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt4/GuiToolbar.cpp

index 8cec1043521ed102412e672b7bbb0a5d372c2235..2ed5c85aef31702f238cee4121581d64538d73c3 100644 (file)
@@ -651,7 +651,7 @@ void GuiLayoutBox::selected(int index)
                resetFilter();
                return;
        }
-       lyxerr << "ERROR (layoutSelected): layout not found!" << endl;
+       LYXERR0("ERROR (layoutSelected): layout not found!");
 }
 
 
@@ -748,7 +748,7 @@ public:
 
                ToolbarInfo const * tbinfo = guiApp->toolbars().info(tbitem_.name_);
                if (!tbinfo) {
-                       lyxerr << "Unknown toolbar " << tbitem_.name_ << endl;
+                       LYXERR0("Unknown toolbar " << tbitem_.name_);
                        return;
                }
                IconPalette * panel = new IconPalette(this);
@@ -802,7 +802,7 @@ public:
                connect(bar_, SIGNAL(updated()), m, SLOT(updateParent()));
                ToolbarInfo const * tbinfo = guiApp->toolbars().info(tbitem_.name_);
                if (!tbinfo) {
-                       lyxerr << "Unknown toolbar " << tbitem_.name_ << endl;
+                       LYXERR0("Unknown toolbar " << tbitem_.name_);
                        return;
                }
                ToolbarInfo::item_iterator it = tbinfo->items.begin();