summaryrefslogtreecommitdiffstats
path: root/ksysv/ksvdraglist.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ksysv/ksvdraglist.cpp')
-rw-r--r--ksysv/ksvdraglist.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/ksysv/ksvdraglist.cpp b/ksysv/ksvdraglist.cpp
index 52e8ad6..6c57f55 100644
--- a/ksysv/ksvdraglist.cpp
+++ b/ksysv/ksvdraglist.cpp
@@ -214,8 +214,8 @@ TQPixmap KSVItem::paintDragIcon (const TQFont& font, const TQColorGroup&) const
label());
p.end();
- TQBitmap tqmask (width, height);
- p.begin (&tqmask);
+ TQBitmap mask (width, height);
+ p.begin (&mask);
p.setFont (font);
p.fillRect (0, 0, width, height, color0);
@@ -234,7 +234,7 @@ TQPixmap KSVItem::paintDragIcon (const TQFont& font, const TQColorGroup&) const
p.end();
- result.setMask(tqmask);
+ result.setMask(mask);
result.setOptimization(TQPixmap::BestOptim);
return result;
}
@@ -309,8 +309,8 @@ void KSVItem::setOriginalRunlevel (const TQString& rl)
// KSVDragList
//-----------------------
-KSVDragList::KSVDragList ( TQWidget* tqparent, const char* name )
- : KListView (tqparent, name),
+KSVDragList::KSVDragList ( TQWidget* parent, const char* name )
+ : KListView (parent, name),
mItemToDrag (0L),
mDragMenu (new KPopupMenu (this)),
mDragCopyMenu (new KPopupMenu (this)),
@@ -776,8 +776,8 @@ void KSVDragList::setEnabled (bool enable)
// KServiceDragList
-KServiceDragList::KServiceDragList (TQWidget* tqparent, const char* name)
- : KSVDragList (tqparent, name)
+KServiceDragList::KServiceDragList (TQWidget* parent, const char* name)
+ : KSVDragList (parent, name)
{
}