summaryrefslogtreecommitdiffstats
path: root/kbarcode/batchwizard.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-21 14:04:13 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-21 14:04:13 -0600
commit89aad95327abcf161b308f56685f326b4050053a (patch)
treeda6442ce2fb36ac66045698b71817a9bd4d29866 /kbarcode/batchwizard.cpp
parent4541cff71067e65367cea5ff44e5136934e8a333 (diff)
downloadkbarcode-89aad95327abcf161b308f56685f326b4050053a.tar.gz
kbarcode-89aad95327abcf161b308f56685f326b4050053a.zip
Rename obsolete tq methods to standard names
Diffstat (limited to 'kbarcode/batchwizard.cpp')
-rw-r--r--kbarcode/batchwizard.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/kbarcode/batchwizard.cpp b/kbarcode/batchwizard.cpp
index c99b089..6e5bdc2 100644
--- a/kbarcode/batchwizard.cpp
+++ b/kbarcode/batchwizard.cpp
@@ -394,7 +394,7 @@ void BatchWizard::setupStackPage4()
TQFrame* buttons = new TQFrame( stack4 );
buttons->setMargin( 10 );
- TQVBoxLayout* tqlayout = new TQVBoxLayout( buttons );
+ TQVBoxLayout* layout = new TQVBoxLayout( buttons );
TQSpacerItem* spacer1 = new TQSpacerItem( 20, 20, TQSizePolicy::Expanding, TQSizePolicy::Expanding );
TQSpacerItem* spacer2 = new TQSpacerItem( 20, 20, TQSizePolicy::Expanding, TQSizePolicy::Expanding );
@@ -413,12 +413,12 @@ void BatchWizard::setupStackPage4()
TQToolTip::add( buttonRemoveAddress, i18n("Remove selected contacts from the list of contacts which will be printed.") );
TQToolTip::add( buttonRemoveAllAddress, i18n("Remove all contacts from the list of contacts which will be printed.") );
- tqlayout->addItem( spacer1 );
- tqlayout->addWidget( buttonAddAllAddress );
- tqlayout->addWidget( buttonAddAddress );
- tqlayout->addWidget( buttonRemoveAddress );
- tqlayout->addWidget( buttonRemoveAllAddress );
- tqlayout->addItem( spacer2 );
+ layout->addItem( spacer1 );
+ layout->addWidget( buttonAddAllAddress );
+ layout->addWidget( buttonAddAddress );
+ layout->addWidget( buttonRemoveAddress );
+ layout->addWidget( buttonRemoveAllAddress );
+ layout->addItem( spacer2 );
mainLayout->addWidget( list1 );
mainLayout->addWidget( buttons );
@@ -873,7 +873,7 @@ void BatchWizard::loadFromFile()
void BatchWizard::loadFromClipboard()
{
- TQClipboard *cb = KApplication::tqclipboard();
+ TQClipboard *cb = KApplication::clipboard();
loadData( cb->text() );
}