summaryrefslogtreecommitdiffstats
path: root/src/k3bsplash.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:35:48 -0600
committerSlávek Banko <slavek.banko@axis.cz>2012-06-23 15:43:45 +0200
commitfeae001a0240fdca57cc68779f59f88e6af49335 (patch)
treee8c1ef6b2ca3f23c77647b98373ed1750eac267b /src/k3bsplash.cpp
parentbe2dabe8503655c1f6b8049955c499e4f47a51d7 (diff)
downloadk3b-feae001a0240fdca57cc68779f59f88e6af49335.tar.gz
k3b-feae001a0240fdca57cc68779f59f88e6af49335.zip
Remove additional unneeded tq method conversions
(cherry picked from commit 5183781c5dddd8447b308c24b2d7f9257bd0bcad)
Diffstat (limited to 'src/k3bsplash.cpp')
-rw-r--r--src/k3bsplash.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/k3bsplash.cpp b/src/k3bsplash.cpp
index c1d1992..bfe7b15 100644
--- a/src/k3bsplash.cpp
+++ b/src/k3bsplash.cpp
@@ -60,7 +60,7 @@ K3bSplash::K3bSplash( TQWidget* parent, const char* name )
m_infoBox->setPaletteBackgroundColor( black );
m_infoBox->setPaletteForegroundColor( white );
- // Set tqgeometry, with support for Xinerama systems
+ // Set geometry, with support for Xinerama systems
TQRect r;
r.setSize(sizeHint());
int ps = TQApplication::desktop()->primaryScreen();
@@ -108,7 +108,7 @@ void K3bSplash::addInfo( const TQString& s )
// TQFontMetrics fm = p.fontMetrics();
-// TQString line1 = TQString( "K3b version %1" ).tqarg(VERSION);
+// TQString line1 = TQString( "K3b version %1" ).arg(VERSION);
// TQString line2( "(c) 2001 by Sebastian Trueg" );
// TQString line3( "licenced under the GPL" );
@@ -122,7 +122,7 @@ void K3bSplash::addInfo( const TQString& s )
// int startX = 10;
// int startY = height() - 10 - textH;
-// p.drawText( startX, startY, textW, textH, 0, TQString("%1\n%2\n%3").tqarg(line1).tqarg(line2).tqarg(line3) );
+// p.drawText( startX, startY, textW, textH, 0, TQString("%1\n%2\n%3").arg(line1).arg(line2).arg(line3) );
// }