summaryrefslogtreecommitdiffstats
path: root/kvoctrain/kvoctrain/entry-dialogs/MCEntryPage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kvoctrain/kvoctrain/entry-dialogs/MCEntryPage.cpp')
-rw-r--r--kvoctrain/kvoctrain/entry-dialogs/MCEntryPage.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/kvoctrain/kvoctrain/entry-dialogs/MCEntryPage.cpp b/kvoctrain/kvoctrain/entry-dialogs/MCEntryPage.cpp
index a26e43ed..a6967704 100644
--- a/kvoctrain/kvoctrain/entry-dialogs/MCEntryPage.cpp
+++ b/kvoctrain/kvoctrain/entry-dialogs/MCEntryPage.cpp
@@ -29,19 +29,19 @@
#include <langset.h>
-#include <qlineedit.h>
+#include <tqlineedit.h>
-MCEntryPage::MCEntryPage(EntryDlg *_dlgbook, bool multi_sel, const MultipleChoice &mc, QWidget *parent, const char *name)
+MCEntryPage::MCEntryPage(EntryDlg *_dlgbook, bool multi_sel, const MultipleChoice &mc, TQWidget *parent, const char *name)
: MCEntryPageForm( parent, name ), dlgbook(_dlgbook)
{
multiplechoice = mc;
- connect( mc1Field, SIGNAL(textChanged(const QString&)), SLOT(mc1Changed(const QString&)) );
- connect( mc2Field, SIGNAL(textChanged(const QString&)), SLOT(mc2Changed(const QString&)) );
- connect( mc3Field, SIGNAL(textChanged(const QString&)), SLOT(mc3Changed(const QString&)) );
- connect( mc4Field, SIGNAL(textChanged(const QString&)), SLOT(mc4Changed(const QString&)) );
- connect( mc5Field, SIGNAL(textChanged(const QString&)), SLOT(mc5Changed(const QString&)) );
+ connect( mc1Field, TQT_SIGNAL(textChanged(const TQString&)), TQT_SLOT(mc1Changed(const TQString&)) );
+ connect( mc2Field, TQT_SIGNAL(textChanged(const TQString&)), TQT_SLOT(mc2Changed(const TQString&)) );
+ connect( mc3Field, TQT_SIGNAL(textChanged(const TQString&)), TQT_SLOT(mc3Changed(const TQString&)) );
+ connect( mc4Field, TQT_SIGNAL(textChanged(const TQString&)), TQT_SLOT(mc4Changed(const TQString&)) );
+ connect( mc5Field, TQT_SIGNAL(textChanged(const TQString&)), TQT_SLOT(mc5Changed(const TQString&)) );
setData(multi_sel, mc);
}
@@ -68,35 +68,35 @@ void MCEntryPage::setData(bool multi_sel, const MultipleChoice &mc)
}
-void MCEntryPage::mc1Changed(const QString& s)
+void MCEntryPage::mc1Changed(const TQString& s)
{
setModified(true);
multiplechoice.setMC1 (s);
}
-void MCEntryPage::mc2Changed(const QString& s)
+void MCEntryPage::mc2Changed(const TQString& s)
{
setModified(true);
multiplechoice.setMC2 (s);
}
-void MCEntryPage::mc3Changed(const QString& s)
+void MCEntryPage::mc3Changed(const TQString& s)
{
setModified(true);
multiplechoice.setMC3 (s);
}
-void MCEntryPage::mc4Changed(const QString& s)
+void MCEntryPage::mc4Changed(const TQString& s)
{
setModified(true);
multiplechoice.setMC4 (s);
}
-void MCEntryPage::mc5Changed(const QString& s)
+void MCEntryPage::mc5Changed(const TQString& s)
{
setModified(true);
multiplechoice.setMC5 (s);