diff options
Diffstat (limited to 'krita/plugins/viewplugins/dropshadow/dlg_dropshadow.h')
-rw-r--r-- | krita/plugins/viewplugins/dropshadow/dlg_dropshadow.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/krita/plugins/viewplugins/dropshadow/dlg_dropshadow.h b/krita/plugins/viewplugins/dropshadow/dlg_dropshadow.h index 8e514658..9261e723 100644 --- a/krita/plugins/viewplugins/dropshadow/dlg_dropshadow.h +++ b/krita/plugins/viewplugins/dropshadow/dlg_dropshadow.h @@ -24,7 +24,7 @@ #include <kis_dropshadow.h> class WdgDropshadow; -class QColor; +class TQColor; /** * This dialog allows the user to configure the decomposition of an image @@ -33,20 +33,21 @@ class QColor; class DlgDropshadow: public KDialogBase { typedef KDialogBase super; Q_OBJECT + TQ_OBJECT public: - DlgDropshadow(const QString & imageCS, const QString & layerCS, QWidget * parent = 0, + DlgDropshadow(const TQString & imageCS, const TQString & layerCS, TQWidget * tqparent = 0, const char* name = 0); ~DlgDropshadow(); public: - Q_INT32 getXOffset(); - Q_INT32 getYOffset(); - Q_INT32 getBlurRadius(); - Q_UINT8 getShadowOpacity(); - QColor getShadowColor(); + TQ_INT32 getXOffset(); + TQ_INT32 getYOffset(); + TQ_INT32 getBlurRadius(); + TQ_UINT8 getShadowOpacity(); + TQColor getShadowColor(); bool allowResizingChecked(); private slots: void okClicked(); |