diff options
Diffstat (limited to 'kpresenter/KPrUtils.cpp')
-rw-r--r-- | kpresenter/KPrUtils.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kpresenter/KPrUtils.cpp b/kpresenter/KPrUtils.cpp index fbf91cc9..fa21141a 100644 --- a/kpresenter/KPrUtils.cpp +++ b/kpresenter/KPrUtils.cpp @@ -345,10 +345,10 @@ TQCursor KPrUtils::penCursor() 0x7c, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00}; TQBitmap pen_bitmap( 24, 24, pen_bits, true ); - TQBitmap pen_tqmask( 24, 24 ); + TQBitmap pen_mask( 24, 24 ); TQPixmap pix( pen_bitmap ); - pen_tqmask = pix.createHeuristicMask( false ); - pix.setMask( pen_tqmask ); + pen_mask = pix.createHeuristicMask( false ); + pix.setMask( pen_mask ); return TQCursor( pix, 1, 22 ); } @@ -364,10 +364,10 @@ TQCursor KPrUtils::rotateCursor() 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; TQBitmap rotate_bitmap( 22, 22, rotate_bits, true ); - TQBitmap rotate_tqmask( 22, 22 ); + TQBitmap rotate_mask( 22, 22 ); TQPixmap pix( rotate_bitmap ); - rotate_tqmask = pix.createHeuristicMask( false ); - pix.setMask( rotate_tqmask ); + rotate_mask = pix.createHeuristicMask( false ); + pix.setMask( rotate_mask ); return TQCursor( pix, 11, 13 ); } |