diff options
author | Slávek Banko <[email protected]> | 2013-07-27 16:57:53 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2013-07-27 18:48:46 +0200 |
commit | 7c2bc4b5ce4fc1a72868aa949e9ec49fbe2e7931 (patch) | |
tree | 4655c7263ca5c64d23d10167cb459dd9cb253815 /src/konqplugin/tork_plug_in.h | |
parent | 88ea2b6cd4382627fb6efca9cc54825aee881d1e (diff) | |
download | tork-7c2bc4b5ce4fc1a72868aa949e9ec49fbe2e7931.tar.gz tork-7c2bc4b5ce4fc1a72868aa949e9ec49fbe2e7931.zip |
Initial TQt conversion
Diffstat (limited to 'src/konqplugin/tork_plug_in.h')
-rw-r--r-- | src/konqplugin/tork_plug_in.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/konqplugin/tork_plug_in.h b/src/konqplugin/tork_plug_in.h index 4df506c..63b9216 100644 --- a/src/konqplugin/tork_plug_in.h +++ b/src/konqplugin/tork_plug_in.h @@ -49,14 +49,14 @@ class Tork_plug_in : public KParts::Plugin { Q_OBJECT public: - Tork_plug_in( QObject* parent = 0, const char* name = 0 ); + Tork_plug_in( TQObject* parent = 0, const char* name = 0 ); KAction *m_paToggleKDE ; DCOPClient* p_dcopServer; virtual ~Tork_plug_in(); private slots: void toggleKDE(); - void openWithBrowser(const QString&); + void openWithBrowser(const TQString&); void openWithFirefox(); void openWithOpera(); void showPopup(); @@ -67,12 +67,12 @@ class KPluginFactory : public KLibFactory { Q_OBJECT public: - KPluginFactory( QObject *parent = 0, const char *name = 0 ); + KPluginFactory( TQObject *parent = 0, const char *name = 0 ); ~KPluginFactory() ; - virtual QObject* createObject( QObject* parent = 0, const char* pname = 0, - const char* name = "QObject", - const QStringList &args = QStringList() ); + virtual TQObject* createObject( TQObject* parent = 0, const char* pname = 0, + const char* name = "TQObject", + const TQStringList &args = TQStringList() ); private: static KInstance* s_instance; |