* src/buffer.C (updateDocLang): update labels when changing language.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_4_X@14628 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2006-08-12 20:12:52 +00:00
parent 43481937fe
commit bdb2556d5b
3 changed files with 14 additions and 6 deletions

View File

@ -1,3 +1,7 @@
2006-08-12 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
* buffer.C (updateDocLang): update labels when changing language.
2006-08-11 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
* lyx_main.C (init): Do automatic reconfiguration even when

View File

@ -1366,6 +1366,8 @@ void Buffer::updateDocLang(Language const * nlang)
BOOST_ASSERT(nlang);
pimpl_->messages.reset(new Messages(nlang->code()));
updateCounters(*this);
}

View File

@ -33,12 +33,6 @@ What's new
* Document Input/Output
- Fix crash when using next-inset-toggle (Ctrl+I) inside mathed; make
inset locking in mathed generally work (bug 2756).
- Fix crash on save (including dataloss) when the backup directory
was invalid or not writeable(bug 2740).
- Fix crash when importing LaTeX files with no text (bug 2667)
- Ignore definition of lyxgreyout environment when re-importing a LyX
@ -56,6 +50,14 @@ What's new
* User Interface:
- Fix crash when using next-inset-toggle (Ctrl+I) inside mathed; make
inset locking in mathed generally work (bug 2756).
- Fix crash on save (including dataloss) when the backup directory
was invalid or not writeable(bug 2740).
- Update labels on screen when changing language.
- Show an error box when failing to update the TeX Information dalog data.
- Handle the Meta keyboard modifier as Alt (Qt only).