diff options
Diffstat (limited to 'kjumpingcube/kcubewidget.cpp')
-rw-r--r-- | kjumpingcube/kcubewidget.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kjumpingcube/kcubewidget.cpp b/kjumpingcube/kcubewidget.cpp index b98ca82e..87fbd276 100644 --- a/kjumpingcube/kcubewidget.cpp +++ b/kjumpingcube/kcubewidget.cpp @@ -88,9 +88,9 @@ KCubeWidget::KCubeWidget(TQWidget* parent,const char* name // will be automatically destroyed by the parent hintTimer = new TQTimer(this); hintCounter=0; - connect(hintTimer,TQT_SIGNAL(timeout()),TQT_SLOT(hint())); + connect(hintTimer,TQ_SIGNAL(timeout()),TQ_SLOT(hint())); - setPalette(kapp->palette()); + setPalette(tdeApp->palette()); // show values repaint(false); @@ -192,7 +192,7 @@ void KCubeWidget::updateColors() else if(owner()==Two) setPalette(color2); else if(owner()==Nobody) - setPalette(kapp->palette()); + setPalette(tdeApp->palette()); } void KCubeWidget::stopHint() @@ -240,7 +240,7 @@ void KCubeWidget::mouseReleaseEvent(TQMouseEvent *e) if(e->x()< 0 || e->x() > width() || e->y() < 0 || e->y() > height()) return; - if(e->button() == Qt::LeftButton && _clicksAllowed) + if(e->button() == TQt::LeftButton && _clicksAllowed) { stopHint(); emit clicked(row(),column(),true); |