summaryrefslogtreecommitdiffstats
path: root/chalk/core/kis_image.h
diff options
context:
space:
mode:
Diffstat (limited to 'chalk/core/kis_image.h')
-rw-r--r--chalk/core/kis_image.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/chalk/core/kis_image.h b/chalk/core/kis_image.h
index 4db23d3c6..132505b29 100644
--- a/chalk/core/kis_image.h
+++ b/chalk/core/kis_image.h
@@ -248,23 +248,23 @@ public:
KisLayerSP findLayer(int id) const;
/// Move layer to specified position
- bool moveLayer(KisLayerSP layer, KisGroupLayerSP tqparent, KisLayerSP aboveThis);
+ bool moveLayer(KisLayerSP layer, KisGroupLayerSP parent, KisLayerSP aboveThis);
/**
* Add an already existing layer to the image. The layer is put on top
* of the layers in the specified layergroup
* @param layer the layer to be added
- * @param tqparent the tqparent layer
+ * @param parent the parent layer
*/
- bool addLayer(KisLayerSP layer, KisGroupLayerSP tqparent);
+ bool addLayer(KisLayerSP layer, KisGroupLayerSP parent);
/**
* Add already existing layer to image.
*
* @param layer the layer to be added
- * @param tqparent the tqparent layer
+ * @param parent the parent layer
* @param aboveThis in the list with child layers of the specified
- * tqparent, add this layer above the specified sibling.
+ * parent, add this layer above the specified sibling.
* if 0, the layer is put in the lowermost position in
* its group.
* @param notify If true, the image is immediately recomposited, if false,
@@ -272,7 +272,7 @@ public:
*
* returns false if adding the layer didn't work, true if the layer got added
*/
- bool addLayer(KisLayerSP layer, KisGroupLayerSP tqparent, KisLayerSP aboveThis);
+ bool addLayer(KisLayerSP layer, KisGroupLayerSP parent, KisLayerSP aboveThis);
/// Remove layer
bool removeLayer(KisLayerSP layer);
@@ -355,21 +355,21 @@ signals:
/// Emitted after a different layer is made active.
void sigLayerActivated(KisLayerSP layer);
- /// Emitted after a layer is added: you can find out where by asking it for its tqparent(), et al.
+ /// Emitted after a layer is added: you can find out where by asking it for its parent(), et al.
void sigLayerAdded(KisLayerSP layer);
/** Emitted after a layer is removed.
It's no longer in the image, but still exists, so @p layer is valid.
@param layer the removed layer
- @param tqparent the tqparent of the layer, before it was removed
+ @param parent the parent of the layer, before it was removed
@param wasAboveThis the layer it was above, before it was removed.
*/
void sigLayerRemoved(KisLayerSP layer, KisGroupLayerSP wasParent, KisLayerSP wasAboveThis);
- /** Emitted after a layer is moved to a different position under its tqparent layer, or its tqparent changes.
+ /** Emitted after a layer is moved to a different position under its parent layer, or its parent changes.
- @param previousParent the tqparent of the layer, before it was moved
+ @param previousParent the parent of the layer, before it was moved
@param wasAboveThis the layer it was above, before it was moved.
*/
void sigLayerMoved(KisLayerSP layer, KisGroupLayerSP previousParent, KisLayerSP wasAboveThis);
@@ -409,7 +409,7 @@ signals:
void sigColorSpaceChanged(KisColorSpace* cs);
- /// Emitted when any layer's tqmask info got updated (or when the current layer changes)
+ /// Emitted when any layer's mask info got updated (or when the current layer changes)
void sigMaskInfoChanged();
public slots:
void slotSelectionChanged();