remove annoying debug messages

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14260 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2006-06-28 14:22:31 +00:00
parent c99a986c16
commit a185f95d32
3 changed files with 2 additions and 5 deletions

View File

@ -1342,8 +1342,6 @@ void Buffer::changeLanguage(Language const * from, Language const * to)
BOOST_ASSERT(from);
BOOST_ASSERT(to);
lyxerr << "Changing Language!" << endl;
// Take care of l10n/i18n
updateDocLang(to);

View File

@ -34,7 +34,6 @@ ControlCitation::ControlCitation(Dialog & d)
bool ControlCitation::initialiseParams(string const & data)
{
lyxerr << "ControlCitation::initialiseParams\n\t" << data << std::endl;
ControlCommand::initialiseParams(data);
vector<pair<string, string> > blist;

View File

@ -295,8 +295,8 @@ void ControlSpellchecker::showSummary()
void ControlSpellchecker::replace(string const & replacement)
{
lyxerr << "ControlSpellchecker::replace("
<< replacement << ")" << std::endl;
lyxerr[Debug::GUI] << "ControlSpellchecker::replace("
<< replacement << ")" << std::endl;
BufferView & bufferview = *kernel().bufferview();
cap::replaceWord(bufferview.cursor(), replacement);
kernel().buffer().markDirty();