summaryrefslogtreecommitdiffstats
path: root/src/gui/general/PixmapFunctions.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/general/PixmapFunctions.h')
-rw-r--r--src/gui/general/PixmapFunctions.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/gui/general/PixmapFunctions.h b/src/gui/general/PixmapFunctions.h
index 8a84813..4564573 100644
--- a/src/gui/general/PixmapFunctions.h
+++ b/src/gui/general/PixmapFunctions.h
@@ -40,8 +40,8 @@ class PixmapFunctions
{
public:
/**
- * Generate a heuristic tqmask for the given pixmap. Unlike
- * TQPixmap::createHeuristicMask, this removes from the tqmask all
+ * Generate a heuristic mask for the given pixmap. Unlike
+ * TQPixmap::createHeuristicMask, this removes from the mask all
* pixels that are apparently "background" even if they appear in
* holes in the middle of the image. This is more usually what we
* want than the default behaviour of createHeuristicMask.
@@ -53,8 +53,8 @@ public:
static TQBitmap generateMask(const TQPixmap &map, const TQRgb &rgb);
/**
- * Generate a heuristic tqmask for the given pixmap. Unlike
- * TQPixmap::createHeuristicMask, this removes from the tqmask all
+ * Generate a heuristic mask for the given pixmap. Unlike
+ * TQPixmap::createHeuristicMask, this removes from the mask all
* pixels that are apparently "background" even if they appear in
* holes in the middle of the image. This is more usually what we
* want than the default behaviour of createHeuristicMask.
@@ -78,10 +78,10 @@ public:
*/
static TQPixmap shadePixmap(const TQPixmap &map);
- /// Return a TQPixmap that is a mirror image of map (including tqmask)
+ /// Return a TQPixmap that is a mirror image of map (including mask)
static TQPixmap flipVertical(const TQPixmap &map);
- /// Return a TQPixmap that is a mirror image of map (including tqmask)
+ /// Return a TQPixmap that is a mirror image of map (including mask)
static TQPixmap flipHorizontal(const TQPixmap &map);
/// Return left and right parts of the TQPixmap
@@ -89,12 +89,12 @@ public:
/**
* Using TQPainter::drawPixmap to draw one pixmap on another does
- * not appear to take the tqmask into account properly. Background
+ * not appear to take the mask into account properly. Background
* pixels in the second pixmap erase foreground pixels in the
* first one, regardless of whether they're masked or not. This
* function does what I expect.
*
- * Note that the source pixmap _must_ have a tqmask.
+ * Note that the source pixmap _must_ have a mask.
*/
static void drawPixmapMasked(TQPixmap &dest, TQBitmap &destMask,
int x, int y,