summaryrefslogtreecommitdiffstats
path: root/knights/console.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'knights/console.cpp')
-rw-r--r--knights/console.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/knights/console.cpp b/knights/console.cpp
index 6b36fa5..326acc6 100644
--- a/knights/console.cpp
+++ b/knights/console.cpp
@@ -171,7 +171,7 @@ void Console::historyForward( void )
///////////////////////////////////////
void Console::replyPrivate( void )
{
- myLineEdit->setText( TQString( "tell %1 " ).tqarg( lastPrivateSource ) );
+ myLineEdit->setText( TQString( "tell %1 " ).arg( lastPrivateSource ) );
if( !myLineEdit->hasFocus() )
getFocus();
}
@@ -182,7 +182,7 @@ void Console::replyPrivate( void )
///////////////////////////////////////
void Console::replyChannel( void )
{
- myLineEdit->setText( TQString( "tell %1 " ).tqarg( lastChannelSource ) );
+ myLineEdit->setText( TQString( "tell %1 " ).arg( lastChannelSource ) );
if( !myLineEdit->hasFocus() )
getFocus();
}