mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-11 11:08:41 +00:00
crash reported by Rod
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5672 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
1880175fea
commit
14e9274b62
@ -1,3 +1,8 @@
|
||||
2002-11-20 John Levon <levon@movementarian.org>
|
||||
|
||||
* QDocument.C:
|
||||
* QDocumentDialog.C: fix my sillies
|
||||
|
||||
2002-11-20 John Levon <levon@movementarian.org>
|
||||
|
||||
* QLPainter.C: use realColor not color for the font
|
||||
|
@ -109,7 +109,7 @@ void QDocument::build_dialog()
|
||||
char const * sizes[] = {
|
||||
_("Default") , _("Custom") , _("US letter") , _("US legal")
|
||||
, _("US executive") , _("A3") , _("A4") , _("A5")
|
||||
, _("B3") , _("B4") , _("B5") };
|
||||
, _("B3") , _("B4") , _("B5"), 0 };
|
||||
dialog_->paperModule->papersizeCO->insertStrList(sizes);
|
||||
|
||||
// layout
|
||||
|
@ -348,11 +348,11 @@ void QDocumentDialog::enableSkip(bool skip)
|
||||
|
||||
void QDocumentDialog::setMargins(int papersize)
|
||||
{
|
||||
const char * a4only[] = {
|
||||
char const * a4only[] = {
|
||||
_("Small Margins"), _("Very small Margins"),
|
||||
_("Very wide Margins ") };
|
||||
const char * normal[] = {
|
||||
_("Default"), _("Custom") };
|
||||
_("Very wide Margins "), 0 };
|
||||
char const * normal[] = {
|
||||
_("Default"), _("Custom"), 0 };
|
||||
|
||||
int olditem = marginsModule->marginCO->currentItem();
|
||||
marginsModule->marginCO->clear();
|
||||
|
Loading…
Reference in New Issue
Block a user