diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 09:55:47 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 09:55:47 -0600 |
commit | 650b58e8e66f8e3e1cf78ee3e0037f4c9e00699a (patch) | |
tree | bb4714865b78e327620ce86a37241ed22df43afa /src/k3bsplash.cpp | |
parent | ef5831dd5c8811c94c9b1bc1377a90174d17c82c (diff) | |
download | k3b-650b58e8e66f8e3e1cf78ee3e0037f4c9e00699a.tar.gz k3b-650b58e8e66f8e3e1cf78ee3e0037f4c9e00699a.zip |
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit ef5831dd5c8811c94c9b1bc1377a90174d17c82c.
Diffstat (limited to 'src/k3bsplash.cpp')
-rw-r--r-- | src/k3bsplash.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/k3bsplash.cpp b/src/k3bsplash.cpp index bfe7b15..5966eed 100644 --- a/src/k3bsplash.cpp +++ b/src/k3bsplash.cpp @@ -47,7 +47,7 @@ K3bSplash::K3bSplash( TQWidget* parent, const char* name ) copyrightLabel->setMargin( 5 ); copyrightLabel->setPaletteBackgroundColor( black ); copyrightLabel->setPaletteForegroundColor( white ); - copyrightLabel->setAlignment( AlignRight ); + copyrightLabel->tqsetAlignment( AlignRight ); TQLabel* picLabel = new TQLabel( this ); if( K3bTheme* theme = k3bappcore->themeManager()->currentTheme() ) { @@ -60,9 +60,9 @@ K3bSplash::K3bSplash( TQWidget* parent, const char* name ) m_infoBox->setPaletteBackgroundColor( black ); m_infoBox->setPaletteForegroundColor( white ); - // Set geometry, with support for Xinerama systems + // Set tqgeometry, with support for Xinerama systems TQRect r; - r.setSize(sizeHint()); + r.setSize(tqsizeHint()); int ps = TQApplication::desktop()->primaryScreen(); r.moveCenter( TQApplication::desktop()->screenGeometry(ps).center() ); setGeometry(r); @@ -108,7 +108,7 @@ void K3bSplash::addInfo( const TQString& s ) // TQFontMetrics fm = p.fontMetrics(); -// TQString line1 = TQString( "K3b version %1" ).arg(VERSION); +// TQString line1 = TQString( "K3b version %1" ).tqarg(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").arg(line1).arg(line2).arg(line3) ); +// p.drawText( startX, startY, textW, textH, 0, TQString("%1\n%2\n%3").tqarg(line1).tqarg(line2).tqarg(line3) ); // } |