summaryrefslogtreecommitdiffstats
path: root/kvoctrain/kvoctrain/entry-dialogs/TenseEntryPage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kvoctrain/kvoctrain/entry-dialogs/TenseEntryPage.cpp')
-rw-r--r--kvoctrain/kvoctrain/entry-dialogs/TenseEntryPage.cpp60
1 files changed, 30 insertions, 30 deletions
diff --git a/kvoctrain/kvoctrain/entry-dialogs/TenseEntryPage.cpp b/kvoctrain/kvoctrain/entry-dialogs/TenseEntryPage.cpp
index 30fa4fdd..c8c7d41e 100644
--- a/kvoctrain/kvoctrain/entry-dialogs/TenseEntryPage.cpp
+++ b/kvoctrain/kvoctrain/entry-dialogs/TenseEntryPage.cpp
@@ -23,10 +23,10 @@
* *
***************************************************************************/
-#include <qcombobox.h>
-#include <qcheckbox.h>
-#include <qpushbutton.h>
-#include <qlineedit.h>
+#include <tqcombobox.h>
+#include <tqcheckbox.h>
+#include <tqpushbutton.h>
+#include <tqlineedit.h>
#include <langset.h>
@@ -39,27 +39,27 @@ TenseEntryPage::TenseEntryPage
bool multi_sel,
const Conjugation &con_prefix,
const Conjugation &conjug,
- QWidget *parent,
+ TQWidget *parent,
const char *name
)
: TenseEntryPageForm( parent, name ), multi_mode(multi_sel), dlgbook(_dlgbook)
{
- connect( third_p_common, SIGNAL(toggled(bool)), SLOT(slotThirdPCommonToggled(bool)) );
- connect( third_s_common, SIGNAL(toggled(bool)), SLOT(slotThirdSCommonToggled(bool)) );
- connect( b_next, SIGNAL(clicked()), SLOT(slotNextConj()) );
- connect( tensebox, SIGNAL(activated(int)), SLOT(slotTenseSelected(int)) );
-
- connect( thirdN_plural, SIGNAL(textChanged(const QString&)), SLOT(thirdNPluralChanged(const QString&)) );
- connect( thirdN_singular, SIGNAL(textChanged(const QString&)), SLOT(thirdNSingularChanged(const QString&)) );
- connect( thirdM_plural, SIGNAL(textChanged(const QString&)), SLOT(thirdMPluralChanged(const QString&)) );
- connect( thirdM_singular, SIGNAL(textChanged(const QString&)), SLOT(thirdMSingularChanged(const QString&)) );
- connect( thirdF_plural, SIGNAL(textChanged(const QString&)), SLOT(thirdFPluralChanged(const QString&)) );
- connect( thirdF_singular, SIGNAL(textChanged(const QString&)), SLOT(thirdFSingularChanged(const QString&)) );
- connect( second_plural, SIGNAL(textChanged(const QString&)), SLOT(secondPluralChanged(const QString&)) );
- connect( second_singular, SIGNAL(textChanged(const QString&)), SLOT(secondSingularChanged(const QString&)) );
- connect( first_plural, SIGNAL(textChanged(const QString&)), SLOT(firstPluralChanged(const QString&)) );
- connect( first_singular, SIGNAL(textChanged(const QString&)), SLOT(firstSingularChanged(const QString&)) );
+ connect( third_p_common, TQT_SIGNAL(toggled(bool)), TQT_SLOT(slotThirdPCommonToggled(bool)) );
+ connect( third_s_common, TQT_SIGNAL(toggled(bool)), TQT_SLOT(slotThirdSCommonToggled(bool)) );
+ connect( b_next, TQT_SIGNAL(clicked()), TQT_SLOT(slotNextConj()) );
+ connect( tensebox, TQT_SIGNAL(activated(int)), TQT_SLOT(slotTenseSelected(int)) );
+
+ connect( thirdN_plural, TQT_SIGNAL(textChanged(const TQString&)), TQT_SLOT(thirdNPluralChanged(const TQString&)) );
+ connect( thirdN_singular, TQT_SIGNAL(textChanged(const TQString&)), TQT_SLOT(thirdNSingularChanged(const TQString&)) );
+ connect( thirdM_plural, TQT_SIGNAL(textChanged(const TQString&)), TQT_SLOT(thirdMPluralChanged(const TQString&)) );
+ connect( thirdM_singular, TQT_SIGNAL(textChanged(const TQString&)), TQT_SLOT(thirdMSingularChanged(const TQString&)) );
+ connect( thirdF_plural, TQT_SIGNAL(textChanged(const TQString&)), TQT_SLOT(thirdFPluralChanged(const TQString&)) );
+ connect( thirdF_singular, TQT_SIGNAL(textChanged(const TQString&)), TQT_SLOT(thirdFSingularChanged(const TQString&)) );
+ connect( second_plural, TQT_SIGNAL(textChanged(const TQString&)), TQT_SLOT(secondPluralChanged(const TQString&)) );
+ connect( second_singular, TQT_SIGNAL(textChanged(const TQString&)), TQT_SLOT(secondSingularChanged(const TQString&)) );
+ connect( first_plural, TQT_SIGNAL(textChanged(const TQString&)), TQT_SLOT(firstPluralChanged(const TQString&)) );
+ connect( first_singular, TQT_SIGNAL(textChanged(const TQString&)), TQT_SLOT(firstSingularChanged(const TQString&)) );
prefix = con_prefix;
selection = "";
@@ -98,7 +98,7 @@ void TenseEntryPage::setData(bool /*multi_sel*/, const Conjugation &conjug)
}
-void TenseEntryPage::firstPluralChanged(const QString& s)
+void TenseEntryPage::firstPluralChanged(const TQString& s)
{
conjugations.setPers1Plural (selection, s);
updateFields();
@@ -106,7 +106,7 @@ void TenseEntryPage::firstPluralChanged(const QString& s)
}
-void TenseEntryPage::firstSingularChanged(const QString& s)
+void TenseEntryPage::firstSingularChanged(const TQString& s)
{
conjugations.setPers1Singular (selection, s);
updateFields();
@@ -114,7 +114,7 @@ void TenseEntryPage::firstSingularChanged(const QString& s)
}
-void TenseEntryPage::secondSingularChanged(const QString& s)
+void TenseEntryPage::secondSingularChanged(const TQString& s)
{
conjugations.setPers2Singular (selection, s);
updateFields();
@@ -122,7 +122,7 @@ void TenseEntryPage::secondSingularChanged(const QString& s)
}
-void TenseEntryPage::secondPluralChanged(const QString& s)
+void TenseEntryPage::secondPluralChanged(const TQString& s)
{
conjugations.setPers2Plural (selection, s);
updateFields();
@@ -130,7 +130,7 @@ void TenseEntryPage::secondPluralChanged(const QString& s)
}
-void TenseEntryPage::thirdFPluralChanged(const QString& s)
+void TenseEntryPage::thirdFPluralChanged(const TQString& s)
{
conjugations.setPers3FemalePlural (selection, s);
updateFields();
@@ -138,7 +138,7 @@ void TenseEntryPage::thirdFPluralChanged(const QString& s)
}
-void TenseEntryPage::thirdFSingularChanged(const QString& s)
+void TenseEntryPage::thirdFSingularChanged(const TQString& s)
{
conjugations.setPers3FemaleSingular (selection, s);
updateFields();
@@ -146,7 +146,7 @@ void TenseEntryPage::thirdFSingularChanged(const QString& s)
}
-void TenseEntryPage::thirdMSingularChanged(const QString& s)
+void TenseEntryPage::thirdMSingularChanged(const TQString& s)
{
conjugations.setPers3MaleSingular (selection, s);
updateFields();
@@ -154,7 +154,7 @@ void TenseEntryPage::thirdMSingularChanged(const QString& s)
}
-void TenseEntryPage::thirdNSingularChanged(const QString& s)
+void TenseEntryPage::thirdNSingularChanged(const TQString& s)
{
conjugations.setPers3NaturalSingular(selection, s);
updateFields();
@@ -162,7 +162,7 @@ void TenseEntryPage::thirdNSingularChanged(const QString& s)
}
-void TenseEntryPage::thirdNPluralChanged(const QString& s)
+void TenseEntryPage::thirdNPluralChanged(const TQString& s)
{
conjugations.setPers3NaturalPlural (selection, s);
updateFields();
@@ -170,7 +170,7 @@ void TenseEntryPage::thirdNPluralChanged(const QString& s)
}
-void TenseEntryPage::thirdMPluralChanged(const QString& s)
+void TenseEntryPage::thirdMPluralChanged(const TQString& s)
{
conjugations.setPers3MalePlural (selection, s);
updateFields();