diff options
author | Timothy Pearson <[email protected]> | 2011-12-19 11:35:39 -0600 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2012-06-05 01:52:57 +0200 |
commit | 5c427ffae97715577a3bdcfdfb715320f5c6d1cb (patch) | |
tree | de12b75a7fc6ee6d413022824d6431a1f2f83303 /src/gvcore/fileopobject.cpp | |
parent | 90ed42be7905e495737a4d7af3b9510ade86ea9b (diff) | |
download | gwenview-5c427ffae97715577a3bdcfdfb715320f5c6d1cb.tar.gz gwenview-5c427ffae97715577a3bdcfdfb715320f5c6d1cb.zip |
Remove additional unneeded tq method conversions
(cherry picked from commit eba1d381626d92b860239417f21d813f02ee6394)
Diffstat (limited to 'src/gvcore/fileopobject.cpp')
-rw-r--r-- | src/gvcore/fileopobject.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gvcore/fileopobject.cpp b/src/gvcore/fileopobject.cpp index 3de66d4..69a6624 100644 --- a/src/gvcore/fileopobject.cpp +++ b/src/gvcore/fileopobject.cpp @@ -259,7 +259,7 @@ void FileOpTrashObject::operator()() { } else { TQString filename=TQStyleSheet::escape(mURLList.first().filename()); response=KMessageBox::warningContinueCancel(mParent, - i18n("<p>Do you really want to move <b>%1</b> to the trash?</p>").tqarg(filename),i18n("Trash used as a verb", "Trash File"),KGuiItem(i18n("Trash used as a verb", "&Trash"),"edittrash")); + i18n("<p>Do you really want to move <b>%1</b> to the trash?</p>").arg(filename),i18n("Trash used as a verb", "Trash File"),KGuiItem(i18n("Trash used as a verb", "&Trash"),"edittrash")); } if (response!=KMessageBox::Continue) return; } @@ -287,7 +287,7 @@ void FileOpRealDeleteObject::operator()() { } else { TQString filename=TQStyleSheet::escape(mURLList.first().filename()); response=KMessageBox::warningContinueCancel(mParent, - i18n("<p>Do you really want to delete <b>%1</b>?</p>").tqarg(filename), + i18n("<p>Do you really want to delete <b>%1</b>?</p>").arg(filename), i18n("Delete File"), KStdGuiItem::del() ); @@ -309,7 +309,7 @@ void FileOpRenameObject::operator()() { TQString filename = srcURL.filename(); InputDialog dlg(mParent); dlg.setCaption(i18n("Renaming File")); - dlg.setLabel(i18n("<p>Rename file <b>%1</b> to:</p>").tqarg(TQStyleSheet::escape(filename))); + dlg.setLabel(i18n("<p>Rename file <b>%1</b> to:</p>").arg(TQStyleSheet::escape(filename))); dlg.setButtonOK( KGuiItem(i18n("&Rename"), "edit") ); dlg.lineEdit()->setText(filename); |