diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
commit | c663b6440964f6ac48027143ac9e63298991f9d0 (patch) | |
tree | 6d8b0c5a5f9db1ee16acf98b1397cea9126b281d /konqueror/konq_guiclients.h | |
parent | a061f7191beebb0e4a3b0c0a7c534ec5f22f2dc7 (diff) | |
download | tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.tar.gz tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1157639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'konqueror/konq_guiclients.h')
-rw-r--r-- | konqueror/konq_guiclients.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/konqueror/konq_guiclients.h b/konqueror/konq_guiclients.h index 3e34d3ee5..6dc31b7e9 100644 --- a/konqueror/konq_guiclients.h +++ b/konqueror/konq_guiclients.h @@ -21,8 +21,8 @@ #define __konq_guiclients_h__ #include <kxmlguiclient.h> -#include <qobject.h> -#include <qdict.h> +#include <tqobject.h> +#include <tqdict.h> #include <ktrader.h> class KAction; @@ -59,14 +59,14 @@ public: bool isIntoTrash, bool doTabHandling ); virtual ~PopupMenuGUIClient(); - virtual KAction *action( const QDomElement &element ) const; + virtual KAction *action( const TQDomElement &element ) const; private: - void addEmbeddingService( QDomElement &menu, int idx, const QString &name, const KService::Ptr &service ); + void addEmbeddingService( TQDomElement &menu, int idx, const TQString &name, const KService::Ptr &service ); KonqMainWindow *m_mainWindow; - QDomDocument m_doc; + TQDomDocument m_doc; }; class ToggleViewGUIClient : public QObject @@ -78,10 +78,10 @@ public: bool empty() const { return m_empty; } - QPtrList<KAction> actions() const; - KAction *action( const QString &name ) { return m_actions[ name ]; } + TQPtrList<KAction> actions() const; + KAction *action( const TQString &name ) { return m_actions[ name ]; } - void saveConfig( bool add, const QString &serviceName ); + void saveConfig( bool add, const TQString &serviceName ); private slots: void slotToggleView( bool toggle ); @@ -89,9 +89,9 @@ private slots: void slotViewRemoved( KonqView *view ); private: KonqMainWindow *m_mainWindow; - QDict<KAction> m_actions; + TQDict<KAction> m_actions; bool m_empty; - QMap<QString,bool> m_mapOrientation; + TQMap<TQString,bool> m_mapOrientation; }; #endif |