summaryrefslogtreecommitdiffstats
path: root/knights/pgn.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'knights/pgn.cpp')
-rw-r--r--knights/pgn.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/knights/pgn.cpp b/knights/pgn.cpp
index b228f2c..1cf29a5 100644
--- a/knights/pgn.cpp
+++ b/knights/pgn.cpp
@@ -34,7 +34,7 @@ pgn::pgn( resource *Rsrc, match_param *param )
if( Param != NULL )
{
- connect( Param, TQT_SIGNAL( valuesChanged() ), this, TQT_SLOT( parseMatchParam() ) );
+ connect( Param, TQ_SIGNAL( valuesChanged() ), this, TQ_SLOT( parseMatchParam() ) );
}
}
pgn::~pgn()
@@ -386,7 +386,7 @@ bool pgn::load( const int pos )
}
/* Allocate the Tab_PGNView */
pgnView = new tab_pgnView( this, Resource );
- connect( pgnView, TQT_SIGNAL( destroyed() ), this, TQT_SLOT( childViewDestroyed() ) );
+ connect( pgnView, TQ_SIGNAL( destroyed() ), this, TQ_SLOT( childViewDestroyed() ) );
Resource->tabManager->addTab( pgnView, i18n( "%1 vs. %2" ).arg( TAG_White ).arg( TAG_Black ) );
pgnView->init();
File.at( File_Position );
@@ -951,7 +951,7 @@ void pgn::print( void )
/* Allocate the Tab_PGNView */
pgnView = new tab_pgnView( this, Resource );
Resource->tabManager->addTab( pgnView, i18n( "%1 vs. %2" ).arg( TAG_White ).arg( TAG_Black ) );
- connect( pgnView, TQT_SIGNAL( destroyed() ), this, TQT_SLOT( childViewDestroyed() ) );
+ connect( pgnView, TQ_SIGNAL( destroyed() ), this, TQ_SLOT( childViewDestroyed() ) );
pgnView->init();
}
pgnView->print();