]> git.lyx.org Git - features.git/commitdiff
* src/frontends/qt4/QCharacter.C:
authorJürgen Spitzmüller <spitz@lyx.org>
Sun, 7 Jan 2007 10:24:25 +0000 (10:24 +0000)
committerJürgen Spitzmüller <spitz@lyx.org>
Sun, 7 Jan 2007 10:24:25 +0000 (10:24 +0000)
* src/frontends/qt4/QDocumentDialog.C:
* src/frontends/qt4/QPrefsDialog.C:
- include some information on the resizing bug,

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16565 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt4/QCharacter.C
src/frontends/qt4/QDocumentDialog.C
src/frontends/qt4/QPrefsDialog.C

index f96e4a10ea2577807f46fba3604b5c7096c32e8f..81e3d6e8914b11e6671a808ef036e2d6c42aa753 100644 (file)
@@ -92,7 +92,8 @@ void QCharacter::build_dialog()
        bcview().addReadOnly(dialog_->autoapplyCB);
 
 // FIXME: hack to work around resizing bug in Qt >= 4.2
-#if QT_VERSION >= 0x040200
+// bug verified with Qt 4.2.{0-2} (JSpitzm)
+#if (QT_VERSION >= 0x040200)
        // qt resizes the comboboxes only after show(), so ...
        dialog_->show();
 #endif
index 5c7b913b39c8e881415a671b8b8546841d0dd120..dcd66369e5c9c54fef2eaa2da5abe3bd024798a5 100644 (file)
@@ -397,6 +397,7 @@ QDocumentDialog::QDocumentDialog(QDocument * form)
        docPS->addPanel(preambleModule, _("LaTeX Preamble"));
        docPS->setCurrentPanel(_("Document Class"));
 // FIXME: hack to work around resizing bug in Qt >= 4.2
+// bug verified with Qt 4.2.{0-2} (JSpitzm)
 #if QT_VERSION >= 0x040200
        docPS->updateGeometry();
 #endif
index fe00adca4071e418689caddc52e6d0b1c4ba3b05..7b64aee28b017022b31a7223ed1f31cf0ad49184 100644 (file)
@@ -1819,6 +1819,7 @@ QPrefsDialog::QPrefsDialog(QPrefs * form)
 
        prefsPS->setCurrentPanel(_("User interface"));
 // FIXME: hack to work around resizing bug in Qt >= 4.2
+// bug verified with Qt 4.2.{0-2} (JSpitzm)
 #if QT_VERSION >= 0x040200
        prefsPS->updateGeometry();
 #endif