summaryrefslogtreecommitdiffstats
path: root/kolourpaint/widgets/kptoolwidgetbrush.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-02 19:23:46 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-02 19:23:46 +0000
commiteba47f8f0637f451e21348187591e1f1fd58ac74 (patch)
tree448f10b95c656604acc331a3236c1e59bde5c1ad /kolourpaint/widgets/kptoolwidgetbrush.h
parentc7e8736c69373f48b0401319757c742e8607431a (diff)
downloadtdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.tar.gz
tdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.zip
TQt conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1158446 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kolourpaint/widgets/kptoolwidgetbrush.h')
-rw-r--r--kolourpaint/widgets/kptoolwidgetbrush.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/kolourpaint/widgets/kptoolwidgetbrush.h b/kolourpaint/widgets/kptoolwidgetbrush.h
index db222e79..563d9625 100644
--- a/kolourpaint/widgets/kptoolwidgetbrush.h
+++ b/kolourpaint/widgets/kptoolwidgetbrush.h
@@ -29,7 +29,7 @@
#ifndef __kptoolwidgetbrush_h__
#define __kptoolwidgetbrush_h__
-#include <qpixmap.h>
+#include <tqpixmap.h>
#include <kptoolwidgetbase.h>
@@ -38,24 +38,24 @@ class kpToolWidgetBrush : public kpToolWidgetBase
Q_OBJECT
public:
- kpToolWidgetBrush (QWidget *parent, const char *name);
+ kpToolWidgetBrush (TQWidget *parent, const char *name);
virtual ~kpToolWidgetBrush ();
private:
- QString brushName (int shape, int whichSize);
+ TQString brushName (int shape, int whichSize);
public:
- QPixmap brush () const;
+ TQPixmap brush () const;
bool brushIsDiagonalLine () const;
signals:
- void brushChanged (const QPixmap &pixmap, bool isDiagonalLine);
+ void brushChanged (const TQPixmap &pixmap, bool isDiagonalLine);
protected slots:
virtual bool setSelected (int row, int col, bool saveAsDefault);
private:
- QPixmap m_brushBitmaps [16];
+ TQPixmap m_brushBitmaps [16];
};
#endif // __kptoolwidgetbrush_h__