mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-23 05:25:26 +00:00
_("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:
parent
da164a6045
commit
1f07acc188
@ -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
|
||||
|
@ -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.");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user