]> git.lyx.org Git - lyx.git/commitdiff
remove some more debug noise
authorLars Gullik Bjønnes <larsbj@gullik.org>
Thu, 9 Oct 2003 13:33:19 +0000 (13:33 +0000)
committerLars Gullik Bjønnes <larsbj@gullik.org>
Thu, 9 Oct 2003 13:33:19 +0000 (13:33 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7885 a592a061-630c-0410-9148-cb99ea01b6c8

src/ChangeLog
src/MenuBackend.C

index 241b6ab8cdc79d9f53d5021408ca982f817a1ad0..2b46262866ff20b0d04f52fcaaded2bdd47625d2 100644 (file)
@@ -1,5 +1,7 @@
 2003-10-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
 
+       * MenuBackend.C (binding): put debug message into Debug::KBMAP
+
        * lyxlex_pimpl.C (setFile): put debug messages into Debug::LYXLEX.
 
 2003-10-09  André Pönitz  <poenitz@gmx.net>
index 6bf49ce94772da1f0898555ea306c791853bc00d..9614260e58fbd2ee23a89815e100bc50f793d6df 100644 (file)
@@ -120,9 +120,10 @@ string const MenuItem::binding() const
        if (!bindings.empty()) {
                return bindings.substr(1, bindings.find(']') - 1);
        } else {
-               lyxerr << "No bindings for "
-                      << lyxaction.getActionName(func_.action)
-                      << '(' << func_.argument << ')' << endl;
+               lyxerr[Debug::KBMAP]
+                       << "No bindings for "
+                       << lyxaction.getActionName(func_.action)
+                       << '(' << func_.argument << ')' << endl;
                return string();
        }