summaryrefslogtreecommitdiffstats
path: root/knights/match_param.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'knights/match_param.cpp')
-rw-r--r--knights/match_param.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/knights/match_param.cpp b/knights/match_param.cpp
index 3b356a4..d5e4351 100644
--- a/knights/match_param.cpp
+++ b/knights/match_param.cpp
@@ -16,18 +16,18 @@
***************************************************************************/
#include <kstddirs.h>
-#include <qcstring.h>
-#include <qfile.h>
-#include <qregexp.h>
+#include <tqcstring.h>
+#include <tqfile.h>
+#include <tqregexp.h>
#include <string.h>
#include "match_param.moc"
-match_param::match_param(resource *Rsrc) : QObject()
+match_param::match_param(resource *Rsrc) : TQObject()
{
myResource = Rsrc;
initialize();
}
-match_param::match_param(resource *Rsrc, const int &whiteType, const int &blackType) : QObject()
+match_param::match_param(resource *Rsrc, const int &whiteType, const int &blackType) : TQObject()
{
myResource = Rsrc;
initialize();
@@ -48,7 +48,7 @@ match_param::~match_param()
void match_param::initialize( void )
{
PlayerNames << "" << "" << "" << "";
- PlayerImages << QPixmap() << QPixmap() << QPixmap() << QPixmap();
+ PlayerImages << TQPixmap() << TQPixmap() << TQPixmap() << TQPixmap();
Type[WHITE] = myResource->Type[WHITE];
Type[WHITE_HELPER] = myResource->Type[WHITE_HELPER];
Type[BLACK] = myResource->Type[BLACK];
@@ -213,7 +213,7 @@ void match_param::setVariation(const int variation)
void match_param::setTimer( void )
{
if( TimerFlag ) return;
- QTimer::singleShot( 0, this, SLOT( slot_Timer() ) );
+ TQTimer::singleShot( 0, this, TQT_SLOT( slot_Timer() ) );
TimerFlag = TRUE;
}