diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-15 15:29:52 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-15 15:29:52 -0600 |
commit | ef5831dd5c8811c94c9b1bc1377a90174d17c82c (patch) | |
tree | 32b4c7307b74026be725950a33d6ec56d0561b3f /src/k3bpassivepopup.cpp | |
parent | db733144770616f45d2d6e89bd3c424538a9fd92 (diff) | |
download | k3b-ef5831dd5c8811c94c9b1bc1377a90174d17c82c.tar.gz k3b-ef5831dd5c8811c94c9b1bc1377a90174d17c82c.zip |
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'src/k3bpassivepopup.cpp')
-rw-r--r-- | src/k3bpassivepopup.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/k3bpassivepopup.cpp b/src/k3bpassivepopup.cpp index 550e7b4..45a9201 100644 --- a/src/k3bpassivepopup.cpp +++ b/src/k3bpassivepopup.cpp @@ -29,7 +29,7 @@ #include <kactivelabel.h> #include <tqtimer.h> -#include <tqlayout.h> +#include <layout.h> #include <tqlabel.h> #include <tqmainwindow.h> #include <tqmessagebox.h> @@ -116,7 +116,7 @@ K3bPassivePopup::K3bPassivePopup( TQWidget* parent ) d->titleLabel = new TQLabel( this ); d->titleLabel->setMargin( 5 ); - d->titleLabel->tqsetAlignment( TQt::AlignCenter ); + d->titleLabel->setAlignment( TQt::AlignCenter ); TQFont fnt( d->titleLabel->font() ); fnt.setBold( true ); d->titleLabel->setFont( fnt ); @@ -124,7 +124,7 @@ K3bPassivePopup::K3bPassivePopup( TQWidget* parent ) d->messageLabel = new KActiveLabel( this ); d->pixmapLabel = new TQLabel( this ); - d->pixmapLabel->tqsetAlignment( TQt::AlignTop ); + d->pixmapLabel->setAlignment( TQt::AlignTop ); d->timeoutWidget = new K3bTimeoutWidget( this ); connect( d->timeoutWidget, TQT_SIGNAL(timeout()), this, TQT_SLOT(slotClose()) ); |