mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-05 17:09:56 +00:00
compile without STL compatibility; fix compile error
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_3_X@10289 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
8f23b05fda
commit
65f949dc76
@ -1,5 +1,7 @@
|
||||
2005-07-17 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
|
||||
|
||||
* qt.m4 (QT_DO_IT_ALL): define QT_NO_STL.
|
||||
|
||||
* configure.in (VERSION):
|
||||
* configure.ac (VERSION): switch to 1.3.7cvs
|
||||
|
||||
|
@ -1,3 +1,7 @@
|
||||
2005-07-17 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
|
||||
|
||||
* QPrefs.C (setComboxFont): use fromqstr.
|
||||
|
||||
2005-07-12 Angus Leeming <leeming@lyx.org>
|
||||
|
||||
* lyx_gui.C (LQApplication d-tor): unlock the mutex if the Qt library
|
||||
|
@ -347,7 +347,7 @@ void setComboxFont(QComboBox * cb, string const & family,
|
||||
string const & default_font_name = tmp.first;
|
||||
|
||||
for (int i = cb->count() - 1; i >= 0; --i) {
|
||||
if (cb->text(i) == default_font_name) {
|
||||
if (fromqstr(cb->text(i)) == default_font_name) {
|
||||
cb->setCurrentItem(i);
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user