summaryrefslogtreecommitdiffstats
path: root/example
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:42:29 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:42:29 -0600
commit1aef904f94a86fecbc71888bc94a790ff36f0403 (patch)
treefd0070eb9a4dc25fc63b889d55f5c6198a324282 /example
parentc03d5480ab0242a8e6b03b466d90d32d39303e71 (diff)
downloadtqscintilla-1aef904f94a86fecbc71888bc94a790ff36f0403.tar.gz
tqscintilla-1aef904f94a86fecbc71888bc94a790ff36f0403.zip
Remove additional unneeded tq method conversions
Diffstat (limited to 'example')
-rw-r--r--example/application.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/example/application.cpp b/example/application.cpp
index fbc03be..bd351ba 100644
--- a/example/application.cpp
+++ b/example/application.cpp
@@ -185,7 +185,7 @@ void ApplicationWindow::save()
TQString text = e->text();
TQFile f( filename );
if ( !f.open( IO_WriteOnly ) ) {
- statusBar()->message( TQString("Could not write to %1").tqarg(filename),
+ statusBar()->message( TQString("Could not write to %1").arg(filename),
2000 );
return;
}
@@ -198,7 +198,7 @@ void ApplicationWindow::save()
setCaption( filename );
- statusBar()->message( TQString( "File %1 saved" ).tqarg( filename ), 2000 );
+ statusBar()->message( TQString( "File %1 saved" ).arg( filename ), 2000 );
}