mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 00:10:59 +00:00
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:
parent
d0ea6d523d
commit
2c21e4eadc
@ -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
|
||||||
|
@ -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();
|
||||||
|
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user