Compilation fixes (remove STRCONV).

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7753 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2003-09-15 12:00:03 +00:00
parent d0ea6d523d
commit 2c21e4eadc
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2003-09-15 Angus Leeming <leeming@lyx.org>
* QAbout.C (build_dialog):
* QPrefs.C (apply): remove STRCONV.
2003-09-09 Lars Gullik Bjønnes <larsbj@lyx.org> 2003-09-09 Lars Gullik Bjønnes <larsbj@lyx.org>
* BulletsModule.C: change Assert to BOOST_ASSERT * BulletsModule.C: change Assert to BOOST_ASSERT

View File

@ -99,7 +99,7 @@ void QAbout::build_dialog()
} }
#endif #endif
dialog_->creditsTV->setText(toqstr(STRCONV(out.str()))); dialog_->creditsTV->setText(toqstr(out.str()));
// try to resize to a good size // try to resize to a good size
dialog_->copyright->hide(); dialog_->copyright->hide();

View File

@ -306,7 +306,7 @@ void QPrefs::apply()
<< setw(2) << ci->color().green() << setw(2) << ci->color().green()
<< setw(2) << ci->color().blue(); << setw(2) << ci->color().blue();
string newhex(STRCONV(ostr.str())); string newhex(ostr.str());
controller().setColor(col, newhex); controller().setColor(col, newhex);
} }
} }