_("blah") + 'f' is most definitely non-U. I suppose I'm the sucker who

has to read his patch for these ... again !

I seem to fix  the same bug every 6 months :)


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5743 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
John Levon 2002-11-28 16:15:45 +00:00
parent da164a6045
commit 1f07acc188
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2002-11-28 John Levon <levon@movementarian.org>
* ControlSpellchecker.C: fix Lars' broken cleanup
2002-11-27 Juergen Spitzmueller <j.spitzmueller@gmx.de>
* ControlTabular.[Ch]: Add isMulticolumnCell

View File

@ -193,7 +193,7 @@ void ControlSpellchecker::clearParams()
if (speller_->alive()) {
speller_->close();
message_ = _("Spellchecking completed!") + '\n';
message_ = string(_("Spellchecking completed!")) + '\n';
#if USE_BOOST_FORMAT
if (count_ != 1) {
@ -201,11 +201,11 @@ void ControlSpellchecker::clearParams()
fmter % count_;
message_ += fmter.str();
} else {
message_+= _("One word checked.");
message_ += _("One word checked.");
}
#else
if (count_ != 1) {
message_ += tostr(count_) + " words checked";
message_ += tostr(count_) + " words checked";
} else {
message_ = _("One word checked.");
}