summaryrefslogtreecommitdiffstats
path: root/libkipi/libkipi/batchprogressdialog.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-21 14:09:57 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-21 14:09:57 -0600
commit8eede28a55a16c34c902c035a60a803186bc1a22 (patch)
treedc941a53a9612b9bea21c87b16c14e8bd7078165 /libkipi/libkipi/batchprogressdialog.cpp
parent24d203b42a12aec5addcc1a751b3b9220229366a (diff)
downloadlibkipi-8eede28a55a16c34c902c035a60a803186bc1a22.tar.gz
libkipi-8eede28a55a16c34c902c035a60a803186bc1a22.zip
Rename obsolete tq methods to standard names
Diffstat (limited to 'libkipi/libkipi/batchprogressdialog.cpp')
-rw-r--r--libkipi/libkipi/batchprogressdialog.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/libkipi/libkipi/batchprogressdialog.cpp b/libkipi/libkipi/batchprogressdialog.cpp
index 1f33cb9..411149e 100644
--- a/libkipi/libkipi/batchprogressdialog.cpp
+++ b/libkipi/libkipi/batchprogressdialog.cpp
@@ -146,15 +146,15 @@ BatchProgressDialog::BatchProgressDialog( TQWidget *parent, const TQString &capt
TQFrame *headerFrame = new TQFrame( box );
headerFrame->setFrameStyle(TQFrame::Panel|TQFrame::Sunken);
- TQHBoxLayout* tqlayout = new TQHBoxLayout( headerFrame );
- tqlayout->setMargin( 2 ); // to make sure the frame gets displayed
- tqlayout->setSpacing( 0 );
+ TQHBoxLayout* layout = new TQHBoxLayout( headerFrame );
+ layout->setMargin( 2 ); // to make sure the frame gets displayed
+ layout->setSpacing( 0 );
TQLabel *pixmapLabelLeft = new TQLabel( headerFrame, "pixmapLabelLeft" );
pixmapLabelLeft->setScaledContents( false );
- tqlayout->addWidget( pixmapLabelLeft );
+ layout->addWidget( pixmapLabelLeft );
TQLabel *labelTitle = new TQLabel( caption, headerFrame, "labelTitle" );
- tqlayout->addWidget( labelTitle );
- tqlayout->setStretchFactor( labelTitle, 1 );
+ layout->addWidget( labelTitle );
+ layout->setStretchFactor( labelTitle, 1 );
TQString dir;
KGlobal::dirs()->addResourceType("kipi_banner_left", KGlobal::dirs()->kde_default("data") + "kipi/data");