]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/QIndexDialog.C
rename LFUN enum values according to their command (as used in th minibuffer/bind...
[lyx.git] / src / frontends / qt4 / QIndexDialog.C
index 987e825da4aa93d9faed6f3d8daec623063a4eb6..78487601cf0a63547be7242e827d9b2d795d1961 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")
+       );
 }