summaryrefslogtreecommitdiffstats
path: root/krename/ProgressDialog.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:32:32 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:32:32 -0600
commit8e0ad9b24c415aeed5e82093211b95879512692a (patch)
tree06c49b11cb92ab944146ca73fd145717b5533aca /krename/ProgressDialog.cpp
parent4375f6cb209fb4a95d47fe04e6bf4b12584387e4 (diff)
downloadkrename-8e0ad9b24c415aeed5e82093211b95879512692a.tar.gz
krename-8e0ad9b24c415aeed5e82093211b95879512692a.zip
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'krename/ProgressDialog.cpp')
-rw-r--r--krename/ProgressDialog.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/krename/ProgressDialog.cpp b/krename/ProgressDialog.cpp
index 99b601f..594ec04 100644
--- a/krename/ProgressDialog.cpp
+++ b/krename/ProgressDialog.cpp
@@ -16,7 +16,7 @@
***************************************************************************/
// QT Includes
-#include <tqlayout.h>
+#include <layout.h>
#include <tqprogressbar.h>
#include <tqtimer.h>
#include <tqtooltip.h>
@@ -157,7 +157,7 @@ void ProgressDialog::error( TQString text )
}
//TODO: simplify this (breaks i18n)
- KListViewItem* item = new KListViewItem( display, TQString( i18n("Error: %1") ).tqarg( TQString() ) + simplify( text ), count() );
+ KListViewItem* item = new KListViewItem( display, TQString( i18n("Error: %1") ).arg( TQString() ) + simplify( text ), count() );
item->setPixmap( 0, SmallIcon("cancel") );
display->insertItem( item );
}
@@ -170,7 +170,7 @@ void ProgressDialog::warning( TQString text )
m_timer->start( TIMER_INTERVAL );
}
- KListViewItem* item = new KListViewItem( display, TQString( i18n("Warning: %1") ).tqarg( TQString() ) + simplify( text ), count() );
+ KListViewItem* item = new KListViewItem( display, TQString( i18n("Warning: %1") ).arg( TQString() ) + simplify( text ), count() );
item->setPixmap( 0, SmallIcon("idea") );
display->insertItem( item );
}