summaryrefslogtreecommitdiffstats
path: root/krita/core/kis_paint_device_action.h
diff options
context:
space:
mode:
Diffstat (limited to 'krita/core/kis_paint_device_action.h')
-rw-r--r--krita/core/kis_paint_device_action.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/krita/core/kis_paint_device_action.h b/krita/core/kis_paint_device_action.h
index 4dbbc365..1e3d41f0 100644
--- a/krita/core/kis_paint_device_action.h
+++ b/krita/core/kis_paint_device_action.h
@@ -19,7 +19,7 @@
#define KIS_PAINTDEV_ACTION_H_
#include "kis_paint_device.h"
-class QString;
+class TQString;
/**
* Defines an action to do with a paint device. It can be force used by the gui on creation
@@ -33,11 +33,11 @@ public:
* up a dialog to choose a texture. The width and height are added because these may
* be needed in some cases.
*/
- virtual void act(KisPaintDeviceSP paintDev, Q_INT32 w = 0, Q_INT32 h = 0) const = 0;
+ virtual void act(KisPaintDeviceSP paintDev, TQ_INT32 w = 0, TQ_INT32 h = 0) const = 0;
/// The name of the action, to be displayed in the GUI
- virtual QString name() const = 0;
+ virtual TQString name() const = 0;
/// A description of the action, to be displayed in the GUI
- virtual QString description() const = 0;
+ virtual TQString description() const = 0;
};
#endif // KIS_PAINTDEV_ACTION_H_