]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/QIndexDialog.C
enable Font cache only for MacOSX and inline width() for other platform.
[lyx.git] / src / frontends / qt4 / QIndexDialog.C
index 987e825da4aa93d9faed6f3d8daec623063a4eb6..1ab740cda117f44169afa471175b5335f0d6e1fa 100644 (file)
 #include "QIndex.h"
 #include "QIndexDialog.h"
 
-#include <qpushbutton.h>
-#include <qlineedit.h>
-#include <q3whatsthis.h>
-//Added by qt3to4:
+#include <QPushButton>
+#include <QLineEdit>
+#include <QWhatsThis>
 #include <QCloseEvent>
 
 namespace lyx {
@@ -33,23 +32,24 @@ QIndexDialog::QIndexDialog(QIndex * form)
                form, SLOT(slotOK()));
        connect(closePB, SIGNAL(clicked()),
                form, SLOT(slotClose()));
-
-    connect( keywordED, SIGNAL( textChanged(const QString&) ), this, SLOT( change_adaptor() ) );
-
-       Q3WhatsThis::add(keywordED, qt_(
-"The format of the entry in the index.\n"
-"\n"
-"An entry can be specified as a sub-entry of\n"
-"another with \"!\":\n"
-"\n"
-"cars!mileage\n"
-"\n"
-"You can cross-refer to another entry like so:\n"
-"\n"
-"cars!mileage|see{economy}\n"
-"\n"
-"For further details refer to the local LaTeX\n"
-"documentation.\n"));
+       connect( keywordED, SIGNAL( textChanged(const QString&) ), 
+               this, SLOT( change_adaptor() ) );
+
+       keywordED->setWhatsThis( qt_(
+               "The format of the entry in the index.\n"
+               "\n"
+               "An entry can be specified as a sub-entry of\n"
+               "another with \"!\":\n"
+               "\n"
+               "cars!mileage\n"
+               "\n"
+               "You can cross-refer to another entry like so:\n"
+               "\n"
+               "cars!mileage|see{economy}\n"
+               "\n"
+               "For further details refer to the local LaTeX\n"
+               "documentation.\n")
+       );
 }
 
 
@@ -80,3 +80,5 @@ void QIndexDialog::closeEvent(QCloseEvent * e)
 
 } // namespace frontend
 } // namespace lyx
+
+#include "QIndexDialog_moc.cpp"