summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/ipodexport
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:43:35 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:43:35 -0600
commitf176190ca6b0706ec1217d0da075c9513af80c0b (patch)
tree7642f68c8dff2a91c6d0df3b77f578249736b7d7 /kipi-plugins/ipodexport
parent8d3892fee88fd0eef3363aeca316ff5c93d9da19 (diff)
downloadkipi-plugins-f176190ca6b0706ec1217d0da075c9513af80c0b.tar.gz
kipi-plugins-f176190ca6b0706ec1217d0da075c9513af80c0b.zip
Remove additional unneeded tq method conversions
Diffstat (limited to 'kipi-plugins/ipodexport')
-rw-r--r--kipi-plugins/ipodexport/ipodexportdialog.cpp2
-rw-r--r--kipi-plugins/ipodexport/ipodheader.cpp6
2 files changed, 4 insertions, 4 deletions
diff --git a/kipi-plugins/ipodexport/ipodexportdialog.cpp b/kipi-plugins/ipodexport/ipodexportdialog.cpp
index cb54703..54f34f2 100644
--- a/kipi-plugins/ipodexport/ipodexportdialog.cpp
+++ b/kipi-plugins/ipodexport/ipodexportdialog.cpp
@@ -700,7 +700,7 @@ UploadDialog::openDevice()
debug() << "could not find iTunesDB on device mounted at " << m_mountPoint << endl;
TQString msg = i18n( "An iPod photo database could not be found on device mounted at %1. "
- "Should I try to initialize your iPod photo database?" ).tqarg( m_mountPoint );
+ "Should I try to initialize your iPod photo database?" ).arg( m_mountPoint );
if( KMessageBox::warningContinueCancel( this, msg, i18n( "Initialize iPod Photo Database?" ),
KGuiItem(i18n("&Initialize"), "new") ) == KMessageBox::Continue )
diff --git a/kipi-plugins/ipodexport/ipodheader.cpp b/kipi-plugins/ipodexport/ipodheader.cpp
index 51b9784..255f3e6 100644
--- a/kipi-plugins/ipodexport/ipodheader.cpp
+++ b/kipi-plugins/ipodexport/ipodheader.cpp
@@ -86,7 +86,7 @@ void IpodHeader::setIncompatibleIpod()
{
const TQString modelType = UploadDialog::instance()->ipodModel();
- m_messageLabel->setText( i18n("<p align=\"center\"><b>Your iPod (%1) does not seem to support artwork.</b></p>" ).tqarg( modelType ) );
+ m_messageLabel->setText( i18n("<p align=\"center\"><b>Your iPod (%1) does not seem to support artwork.</b></p>" ).arg( modelType ) );
setPaletteBackgroundColor( TQColor(225,150,0) );
m_messageLabel->setPaletteBackgroundColor( TQColor(225,150,0) );
@@ -109,12 +109,12 @@ void IpodHeader::setValidIpod()
if( !mountPoint.isEmpty() )
{
m_messageLabel->setText( i18n("<p align=\"center\"><b>iPod %1 detected at: %2</b></p>" )
- .tqarg( modelType, mountPoint ) );
+ .arg( modelType, mountPoint ) );
}
else
{
m_messageLabel->setText( i18n("<p align=\"center\"><b>iPod %1 detected</b></p>" )
- .tqarg( modelType ) );
+ .arg( modelType ) );
}
setPaletteBackgroundColor( TQColor(0,98,0) );
m_messageLabel->setPaletteBackgroundColor( TQColor(0,98,0) );