summaryrefslogtreecommitdiffstats
path: root/kexi/widget/utils/kexiarrowtip.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kexi/widget/utils/kexiarrowtip.cpp')
-rw-r--r--kexi/widget/utils/kexiarrowtip.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/kexi/widget/utils/kexiarrowtip.cpp b/kexi/widget/utils/kexiarrowtip.cpp
index a805f5e3c..2c6f86aad 100644
--- a/kexi/widget/utils/kexiarrowtip.cpp
+++ b/kexi/widget/utils/kexiarrowtip.cpp
@@ -50,13 +50,13 @@ KexiArrowTip::KexiArrowTip(const TQString& text, TQWidget* tqparent)
setAutoMask( false );
//generate tqmask
- TQPixmap tqmaskPm(size());
- tqmaskPm.fill( black );
- TQPainter tqmaskPainter(&tqmaskPm);
- drawFrame(tqmaskPainter);
- TQImage tqmaskImg( tqmaskPm.convertToImage() );
+ TQPixmap maskPm(size());
+ maskPm.fill( black );
+ TQPainter maskPainter(&maskPm);
+ drawFrame(maskPainter);
+ TQImage maskImg( maskPm.convertToImage() );
TQBitmap bm;
- bm = tqmaskImg.createHeuristicMask();
+ bm = maskImg.createHeuristicMask();
setMask( bm );
}