summaryrefslogtreecommitdiffstats
path: root/ksysv/trash.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ksysv/trash.cpp')
-rw-r--r--ksysv/trash.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/ksysv/trash.cpp b/ksysv/trash.cpp
index 089ebe5..aab746c 100644
--- a/ksysv/trash.cpp
+++ b/ksysv/trash.cpp
@@ -47,7 +47,7 @@ KSVTrash::KSVTrash (TQWidget* parent, const char* name)
TQToolTip::add(mLabel, i18n("Drag here to remove services"));
TQToolTip::add(this, i18n("Drag here to remove services"));
- setMinimumSize(tqsizeHint());
+ setMinimumSize(sizeHint());
setAcceptDrops(true);
mLabel->installEventFilter(this);
@@ -75,7 +75,7 @@ void KSVTrash::dropEvent (TQDropEvent* e)
if (mOpen)
{
- mLabel->tqrepaint();
+ mLabel->repaint();
mOpen = false;
}
}
@@ -102,7 +102,7 @@ void KSVTrash::dragLeaveEvent ( TQDragLeaveEvent* )
{
if (mOpen)
{
- mLabel->tqrepaint();
+ mLabel->repaint();
mOpen = false;
}
}
@@ -131,7 +131,7 @@ bool KSVTrash::eventFilter( TQObject *, TQEvent *e )
}
}
-TQSize KSVTrash::tqsizeHint() const
+TQSize KSVTrash::sizeHint() const
{
static TQSize size = TQSize (mPixmapWidth + 2 * 5, mPixmapWidth + 2 * 7);