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 /kwin/clients/web/Web.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 'kwin/clients/web/Web.h')
-rw-r--r-- | kwin/clients/web/Web.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kwin/clients/web/Web.h b/kwin/clients/web/Web.h index 183829e8d..7d7d53bfb 100644 --- a/kwin/clients/web/Web.h +++ b/kwin/clients/web/Web.h @@ -42,9 +42,9 @@ namespace Web WebClient(KDecorationBridge* bridge, KDecorationFactory* factory); ~WebClient(); - virtual QString visibleName() const; - virtual QString defaultButtonsLeft() const; - virtual QString defaultButtonsRight() const; + virtual TQString visibleName() const; + virtual TQString defaultButtonsLeft() const; + virtual TQString defaultButtonsRight() const; virtual bool decorationBehaviour(DecorationBehaviour behaviour) const; virtual int layoutMetric(LayoutMetric lm, bool respectWindowState = true, const KCommonDecorationButton * = 0) const; virtual KCommonDecorationButton *createButton(ButtonType type); @@ -56,7 +56,7 @@ namespace Web protected: virtual void reset( unsigned long changed ); - virtual void paintEvent(QPaintEvent *); + virtual void paintEvent(TQPaintEvent *); private: @@ -64,10 +64,10 @@ namespace Web bool shape_; - QBitmap _buttonBitmap(ButtonType t) const; + TQBitmap _buttonBitmap(ButtonType t) const; }; - class WebFactory : public QObject, public KDecorationFactory + class WebFactory : public TQObject, public KDecorationFactory { Q_OBJECT @@ -78,7 +78,7 @@ namespace Web virtual KDecoration* createDecoration( KDecorationBridge* ); virtual bool reset( unsigned long changed ); virtual bool supports( Ability ability ); - virtual QValueList< BorderSize > borderSizes() const; + virtual TQValueList< BorderSize > borderSizes() const; }; } |