summaryrefslogtreecommitdiffstats
path: root/tdeui/kanimwidget.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tdeui/kanimwidget.cpp')
-rw-r--r--tdeui/kanimwidget.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tdeui/kanimwidget.cpp b/tdeui/kanimwidget.cpp
index 1805714f2..25a0b6847 100644
--- a/tdeui/kanimwidget.cpp
+++ b/tdeui/kanimwidget.cpp
@@ -43,10 +43,10 @@ KAnimWidget::KAnimWidget( const TQString& icons, int size, TQWidget *parent,
: TQFrame( parent, name ),
d( new KAnimWidgetPrivate )
{
- connect( &d->timer, TQT_SIGNAL(timeout()), this, TQT_SLOT(slotTimerUpdate()));
+ connect( &d->timer, TQ_SIGNAL(timeout()), this, TQ_SLOT(slotTimerUpdate()));
if (parent && parent->inherits( "TDEToolBar" ))
- connect(parent, TQT_SIGNAL(modechange()), this, TQT_SLOT(updateIcons()));
+ connect(parent, TQ_SIGNAL(modechange()), this, TQ_SLOT(updateIcons()));
d->loadingCompleted = false;
d->size = size;
@@ -140,7 +140,7 @@ void KAnimWidget::mousePressEvent( TQMouseEvent *e )
void KAnimWidget::mouseReleaseEvent( TQMouseEvent *e )
{
- if ( e->button() == Qt::LeftButton &&
+ if ( e->button() == TQt::LeftButton &&
rect().contains( e->pos() ) )
emit clicked();