diff options
Diffstat (limited to 'krita/core/kis_paint_device_iface.h')
-rw-r--r-- | krita/core/kis_paint_device_iface.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/krita/core/kis_paint_device_iface.h b/krita/core/kis_paint_device_iface.h index d712f410..164b0380 100644 --- a/krita/core/kis_paint_device_iface.h +++ b/krita/core/kis_paint_device_iface.h @@ -23,7 +23,7 @@ #include <dcopref.h> #include <dcopobject.h> -#include <qstring.h> +#include <tqstring.h> class KisPaintDevice; @@ -31,18 +31,18 @@ class KisPaintDeviceIface : virtual public DCOPObject { K_DCOP public: - KisPaintDeviceIface( KisPaintDevice * parent ); + KisPaintDeviceIface( KisPaintDevice * tqparent ); k_dcop: /** * Return the number of bytes a pixel takes. */ - Q_INT32 pixelSize() const; + TQ_INT32 pixelSize() const; /** * Return the number of channels a pixel takes */ - Q_INT32 nChannels() const; + TQ_INT32 nChannels() const; /** * Read the bytes representing the rectangle described by x, y, w, h into @@ -54,7 +54,7 @@ k_dcop: * Reading from areas not previously initialized will read the default * pixel value into data. */ - QByteArray readBytes(Q_INT32 x, Q_INT32 y, Q_INT32 w, Q_INT32 h); + TQByteArray readBytes(TQ_INT32 x, TQ_INT32 y, TQ_INT32 w, TQ_INT32 h); /** * Copy the bytes in data into the rect specified by x, y, w, h. If there @@ -64,7 +64,7 @@ k_dcop: * If the data is written to areas of the paint device not previously initialized, * the paint device will grow. */ - void writeBytes(QByteArray bytes, Q_INT32 x, Q_INT32 y, Q_INT32 w, Q_INT32 h); + void writeBytes(TQByteArray bytes, TQ_INT32 x, TQ_INT32 y, TQ_INT32 w, TQ_INT32 h); /** * Get the colorspace of this image |