summaryrefslogtreecommitdiffstats
path: root/kpresenter/KPrUtils.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
commit04766b207afba7961d4d802313e426f5a2fbef63 (patch)
treec888ea1027c793e2d0386a7e5a1a0cd077b03cb3 /kpresenter/KPrUtils.cpp
parentb6edfe41c9395f2e20784cbf0e630af6426950a3 (diff)
downloadkoffice-04766b207afba7961d4d802313e426f5a2fbef63.tar.gz
koffice-04766b207afba7961d4d802313e426f5a2fbef63.zip
rename the following methods:
tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kpresenter/KPrUtils.cpp')
-rw-r--r--kpresenter/KPrUtils.cpp12
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 );
}