remove some more debug noise

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7885 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Lars Gullik Bjønnes 2003-10-09 13:33:19 +00:00
parent bae961184e
commit b5b225c657
2 changed files with 6 additions and 3 deletions

View 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>

View 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();
}