diff options
author | Timothy Pearson <[email protected]> | 2011-12-19 11:35:48 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-19 11:35:48 -0600 |
commit | 5183781c5dddd8447b308c24b2d7f9257bd0bcad (patch) | |
tree | f1fa64e82ce281c97cf602ba207460a5d38dcfdd /src/k3bsplash.cpp | |
parent | 09c863183250d07f82c0919e0a40fc7834c32192 (diff) | |
download | k3b-5183781c5dddd8447b308c24b2d7f9257bd0bcad.tar.gz k3b-5183781c5dddd8447b308c24b2d7f9257bd0bcad.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'src/k3bsplash.cpp')
-rw-r--r-- | src/k3bsplash.cpp | 6 |
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) ); // } |