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 /kicker/applets/swallow/swallow.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 'kicker/applets/swallow/swallow.h')
-rw-r--r-- | kicker/applets/swallow/swallow.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/kicker/applets/swallow/swallow.h b/kicker/applets/swallow/swallow.h index 8e472f415..7488e913b 100644 --- a/kicker/applets/swallow/swallow.h +++ b/kicker/applets/swallow/swallow.h @@ -20,8 +20,8 @@ #define __swallow_h__ -#include <qevent.h> -#include <qptrlist.h> +#include <tqevent.h> +#include <tqptrlist.h> #include <qxembed.h> #include <kpanelapplet.h> @@ -34,20 +34,20 @@ class KWinModule; class SwallowApp; typedef struct _SwallowCommand { - QString cmdline; - QString title; + TQString cmdline; + TQString title; } SwallowCommand; -typedef QPtrList<SwallowCommand> SwallowCommandList; -typedef QPtrListIterator<SwallowCommand> SwallowCommandListIterator; -typedef QPtrList<SwallowApp> SwallowAppList; +typedef TQPtrList<SwallowCommand> SwallowCommandList; +typedef TQPtrListIterator<SwallowCommand> SwallowCommandListIterator; +typedef TQPtrList<SwallowApp> SwallowAppList; class SwallowApplet : public KPanelApplet { Q_OBJECT public: - SwallowApplet( const QString& configFile, QWidget *parent, + SwallowApplet( const TQString& configFile, TQWidget *parent, const char *name = 0L ); ~SwallowApplet(); @@ -81,7 +81,7 @@ private: static KWinModule *wModule; SwallowCommandList * m_swcList; - QBoxLayout *m_layout; + TQBoxLayout *m_layout; }; @@ -91,7 +91,7 @@ class SwallowApp : public QXEmbed Q_OBJECT public: - SwallowApp( const SwallowCommand * swc, QWidget* parent = 0, + SwallowApp( const SwallowCommand * swc, TQWidget* parent = 0, const char* name = 0); ~SwallowApp(); @@ -106,7 +106,7 @@ protected slots: private: KProcess *process; - QString winTitle; + TQString winTitle; float wh_ratio; }; |