summaryrefslogtreecommitdiffstats
path: root/kbarcode/batchwizard.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:36:06 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:36:06 -0600
commit4541cff71067e65367cea5ff44e5136934e8a333 (patch)
treed20c2f9355e79f068158a2fbbe60ad1786749c63 /kbarcode/batchwizard.cpp
parentdf8b5d68eb9b9da7d1562a3f1819bdd806bdbc33 (diff)
downloadkbarcode-4541cff71067e65367cea5ff44e5136934e8a333.tar.gz
kbarcode-4541cff71067e65367cea5ff44e5136934e8a333.zip
Remove additional unneeded tq method conversions
Diffstat (limited to 'kbarcode/batchwizard.cpp')
-rw-r--r--kbarcode/batchwizard.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kbarcode/batchwizard.cpp b/kbarcode/batchwizard.cpp
index ef1db26..c99b089 100644
--- a/kbarcode/batchwizard.cpp
+++ b/kbarcode/batchwizard.cpp
@@ -558,7 +558,7 @@ void BatchWizard::printNow( const TQString & printer, bool bUserInteraction )
// let's check if the label file does even exist!
if( !TQFile::exists( m_url->url() ) )
{
- KMessageBox::error( this, TQString( i18n("The label file %1 was not found") ).tqarg( m_url->url()) );
+ KMessageBox::error( this, TQString( i18n("The label file %1 was not found") ).arg( m_url->url()) );
return;
}
@@ -747,7 +747,7 @@ bool BatchWizard::addItem( const TQString & article, const TQString & group, int
TQString temp;
temp.sprintf("%0*i", 5, sqlList->childCount() + 1 );
- KListViewItem* item = new KListViewItem( sqlList, temp, TQString( "%1" ).tqarg( count ),
+ KListViewItem* item = new KListViewItem( sqlList, temp, TQString( "%1" ).arg( count ),
article, group );
sqlList->insertItem( item );
@@ -1076,7 +1076,7 @@ bool BatchWizard::fillVarTable()
file.setCSVFile(true);
if( !file.isValid() )
{
- KMessageBox::error( this, TQString( i18n("Can't open file: %1") ).tqarg( importCsvFile->url() ) );
+ KMessageBox::error( this, TQString( i18n("Can't open file: %1") ).arg( importCsvFile->url() ) );
return false;
}