summaryrefslogtreecommitdiffstats
path: root/kenolaba/Spy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kenolaba/Spy.cpp')
-rw-r--r--kenolaba/Spy.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/kenolaba/Spy.cpp b/kenolaba/Spy.cpp
index 37b5406c..1c1569d4 100644
--- a/kenolaba/Spy.cpp
+++ b/kenolaba/Spy.cpp
@@ -43,7 +43,7 @@ Spy::Spy(Board& b)
b2->addWidget( actBoard[i] );
b2->addWidget( actLabel[i] );
- connect( actBoard[i], TQT_SIGNAL(mousePressed()), this, TQT_SLOT(nextStep()) );
+ connect( actBoard[i], TQ_SIGNAL(mousePressed()), this, TQ_SLOT(nextStep()) );
}
l = new TQLabel(this);
@@ -68,13 +68,13 @@ Spy::Spy(Board& b)
b2->addWidget( bestBoard[i] );
b2->addWidget( bestLabel[i] );
- connect( bestBoard[i], TQT_SIGNAL(mousePressed()), this, TQT_SLOT(nextStep()) );
+ connect( bestBoard[i], TQ_SIGNAL(mousePressed()), this, TQ_SLOT(nextStep()) );
}
- connect( &board, TQT_SIGNAL(update(int,int,Move&,bool)),
- this, TQT_SLOT(update(int,int,Move&,bool)) );
- connect( &board, TQT_SIGNAL(updateBest(int,int,Move&,bool)),
- this, TQT_SLOT(updateBest(int,int,Move&,bool)) );
+ connect( &board, TQ_SIGNAL(update(int,int,Move&,bool)),
+ this, TQ_SLOT(update(int,int,Move&,bool)) );
+ connect( &board, TQ_SIGNAL(updateBest(int,int,Move&,bool)),
+ this, TQ_SLOT(updateBest(int,int,Move&,bool)) );
top->activate();
setCaption(i18n("Spy"));
// KWM::setDecoration(winId(), 2);
@@ -126,7 +126,7 @@ void Spy::update(int depth, int value, Move& m, bool wait)
}
while(!next)
- kapp->processEvents();
+ tdeApp->processEvents();
}
void Spy::updateBest(int depth, int value, Move& m, bool cutoff)