summaryrefslogtreecommitdiffstats
path: root/experimental/tqtinterface/qt4/src/kernel/tqcursor.h
diff options
context:
space:
mode:
Diffstat (limited to 'experimental/tqtinterface/qt4/src/kernel/tqcursor.h')
-rw-r--r--experimental/tqtinterface/qt4/src/kernel/tqcursor.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/experimental/tqtinterface/qt4/src/kernel/tqcursor.h b/experimental/tqtinterface/qt4/src/kernel/tqcursor.h
index 1c1d4c12a..135a44f63 100644
--- a/experimental/tqtinterface/qt4/src/kernel/tqcursor.h
+++ b/experimental/tqtinterface/qt4/src/kernel/tqcursor.h
@@ -64,7 +64,7 @@ public:
TQCursor() : QCursor() {}
TQCursor( int tqshape ) : QCursor( tqshape ) {}
TQCursor( Qt::CursorShape shape ) : QCursor( shape ) {}
- TQCursor( const QBitmap &bitmap, const QBitmap &tqmask, int hotX=-1, int hotY=-1 ) : QCursor( bitmap, tqmask, hotX, hotY ) {}
+ TQCursor( const QBitmap &bitmap, const QBitmap &mask, int hotX=-1, int hotY=-1 ) : QCursor( bitmap, mask, hotX, hotY ) {}
TQCursor( const QPixmap &pixmap, int hotX=-1, int hotY=-1 ) : QCursor( pixmap, hotX, hotY ) {}
TQCursor( const QCursor & c ) : QCursor( c ) {}
@@ -106,7 +106,7 @@ class TQ_EXPORT TQCursor : public TQt
public:
TQCursor(); // create default arrow cursor
TQCursor( int tqshape );
- TQCursor( const TQBitmap &bitmap, const TQBitmap &tqmask,
+ TQCursor( const TQBitmap &bitmap, const TQBitmap &mask,
int hotX=-1, int hotY=-1 );
TQCursor( const TQPixmap &pixmap,
int hotX=-1, int hotY=-1 );
@@ -118,7 +118,7 @@ public:
void setShape( int );
const TQBitmap *bitmap() const;
- const TQBitmap *tqmask() const;
+ const TQBitmap *mask() const;
TQPoint hotSpot() const;
#if defined(TQ_WS_WIN)
@@ -144,7 +144,7 @@ public:
static int x11Screen();
#endif
private:
- void setBitmap( const TQBitmap &bitmap, const TQBitmap &tqmask,
+ void setBitmap( const TQBitmap &bitmap, const TQBitmap &mask,
int hotX, int hotY );
void update() const;
TQCursorData *data;