diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-09 02:23:29 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-09 02:23:29 +0000 |
commit | 7c71ab86d1f7e387fc3df63b48df07231f111862 (patch) | |
tree | 30ba2d2f840ff5fd458b6113e9c3f2e8a71d510d /chalk/core/kis_paint_device.h | |
parent | afbfdc507bfaafc8824a9808311d57a9ece87510 (diff) | |
download | koffice-7c71ab86d1f7e387fc3df63b48df07231f111862.tar.gz koffice-7c71ab86d1f7e387fc3df63b48df07231f111862.zip |
Remove the tq in front of these incorrectly TQt4-converted methods/data members:
tqrepaint[...]
tqinvalidate[...]
tqparent[...]
tqmask[...]
tqlayout[...]
tqalignment[...]
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'chalk/core/kis_paint_device.h')
-rw-r--r-- | chalk/core/kis_paint_device.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/chalk/core/kis_paint_device.h b/chalk/core/kis_paint_device.h index 6e804afe..6c8d7331 100644 --- a/chalk/core/kis_paint_device.h +++ b/chalk/core/kis_paint_device.h @@ -90,13 +90,13 @@ public: /** * Create a new paint device with the specified colorspace. The - * tqparentLayer will be notified of changes to this paint device. + * parentLayer will be notified of changes to this paint device. * - * @param tqparentLayer the layer that contains this paint device. + * @param parentLayer the layer that contains this paint device. * @param colorSpace the colorspace of this paint device * @param name for debugging purposes */ - KisPaintDevice(KisLayer *tqparentLayer, KisColorSpace * colorSpace, const char * name = 0); + KisPaintDevice(KisLayer *parentLayer, KisColorSpace * colorSpace, const char * name = 0); KisPaintDevice(const KisPaintDevice& rhs); virtual ~KisPaintDevice(); @@ -386,7 +386,7 @@ public: /** * Return the image that contains this paint device, or 0 if it is not - * part of an image. This is the same as calling tqparentLayer()->image(). + * part of an image. This is the same as calling parentLayer()->image(). */ KisImage *image() const; @@ -394,13 +394,13 @@ public: * Returns the KisLayer that contains this paint device, or 0 if this is not * part of a layer. */ - KisLayer *tqparentLayer() const; + KisLayer *parentLayer() const; /** * Set the KisLayer that contains this paint device, or 0 if this is not * part of a layer. */ - void setParentLayer(KisLayer *tqparentLayer); + void setParentLayer(KisLayer *parentLayer); /** * Add the specified rect top the tqparent layer (if present) |