diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:26:34 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:26:34 +0000 |
commit | 36e4074ba1536a63a121293b20663a38cad836b7 (patch) | |
tree | 5ec4cb3822a30ce8d43a9904931907ade1d7fe2c /kdict | |
parent | 47c8a359c5276062c4bc17f0e82410f29081b502 (diff) | |
download | tdenetwork-36e4074ba1536a63a121293b20663a38cad836b7.tar.gz tdenetwork-36e4074ba1536a63a121293b20663a38cad836b7.zip |
TQt conversion fixes
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1158449 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdict')
-rw-r--r-- | kdict/actions.h | 4 | ||||
-rw-r--r-- | kdict/applet/kdictapplet.h | 4 | ||||
-rw-r--r-- | kdict/dict.h | 2 | ||||
-rw-r--r-- | kdict/options.h | 8 | ||||
-rw-r--r-- | kdict/queryview.h | 2 | ||||
-rw-r--r-- | kdict/sets.cpp | 2 | ||||
-rw-r--r-- | kdict/sets.h | 2 | ||||
-rw-r--r-- | kdict/toplevel.h | 2 |
8 files changed, 13 insertions, 13 deletions
diff --git a/kdict/actions.h b/kdict/actions.h index 97759af4..d2261937 100644 --- a/kdict/actions.h +++ b/kdict/actions.h @@ -24,8 +24,8 @@ #include <kglobalsettings.h> class KComboBox; -class QLabel; -class QPushButton; +class TQLabel; +class TQPushButton; class DictComboAction : public KAction diff --git a/kdict/applet/kdictapplet.h b/kdict/applet/kdictapplet.h index 99a7cec4..de5f469b 100644 --- a/kdict/applet/kdictapplet.h +++ b/kdict/applet/kdictapplet.h @@ -23,8 +23,8 @@ #include <tqhbox.h> #include <kpanelapplet.h> -class QLabel; -class QPushButton; +class TQLabel; +class TQPushButton; class KHistoryCombo; diff --git a/kdict/dict.h b/kdict/dict.h index 53e5db3d..64cf25e0 100644 --- a/kdict/dict.h +++ b/kdict/dict.h @@ -23,7 +23,7 @@ #include <tqptrlist.h> #include <tqsocketnotifier.h> -class QSocketNotifier; +class TQSocketNotifier; struct in_addr; diff --git a/kdict/options.h b/kdict/options.h index c37ee30e..239b52ef 100644 --- a/kdict/options.h +++ b/kdict/options.h @@ -22,10 +22,10 @@ #include <kdialogbase.h> #include <kglobalsettings.h> -class QLineEdit; -class QCheckBox; -class QComboBox; -class QRadioButton; +class TQLineEdit; +class TQCheckBox; +class TQComboBox; +class TQRadioButton; class KColorButton; class KLineEdit; diff --git a/kdict/queryview.h b/kdict/queryview.h index e87bd977..5dc3c9bc 100644 --- a/kdict/queryview.h +++ b/kdict/queryview.h @@ -22,7 +22,7 @@ #include <tqvbox.h> #include <khtml_part.h> -class QFile; +class TQFile; class KTempFile; class KPopupMenu; class DictComboAction; diff --git a/kdict/sets.cpp b/kdict/sets.cpp index 513106da..51dd7eb6 100644 --- a/kdict/sets.cpp +++ b/kdict/sets.cpp @@ -144,7 +144,7 @@ void DbSetsDialog::hideEvent(TQHideEvent *) void DbSetsDialog::newPressed() { - TQStringList *temp = new QStringList; + TQStringList *temp = new TQStringList; temp->append(i18n("New Set")); global->databaseSets.append(temp); global->databases.insert(global->databases.at(global->databaseSets.count()),i18n("New Set")); diff --git a/kdict/sets.h b/kdict/sets.h index 64c75de6..1baa3133 100644 --- a/kdict/sets.h +++ b/kdict/sets.h @@ -18,7 +18,7 @@ #include <kdialogbase.h> -class QListBox; +class TQListBox; //********* DbSetsDialog ****************************************** diff --git a/kdict/toplevel.h b/kdict/toplevel.h index bc803f75..256668e1 100644 --- a/kdict/toplevel.h +++ b/kdict/toplevel.h @@ -21,7 +21,7 @@ #include <kmainwindow.h> #include "dcopinterface.h" -class QSplitter; +class TQSplitter; class KToggleAction; class KToolBarPopupAction; |