summaryrefslogtreecommitdiffstats
path: root/src/smalldialogs.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:36:20 -0600
committerSlávek Banko <slavek.banko@axis.cz>2012-06-05 20:17:55 +0200
commit917939bd57b6e4eca21290640ff17d78ee954647 (patch)
tree206efd8f7b43d38314e05d19037c90a79180de62 /src/smalldialogs.cpp
parent6b0d14ea677dd82618629c82fd1eff9d7839c40d (diff)
downloadkdiff3-917939bd57b6e4eca21290640ff17d78ee954647.tar.gz
kdiff3-917939bd57b6e4eca21290640ff17d78ee954647.zip
Remove additional unneeded tq method conversions
(cherry picked from commit 9b57232f1beb774a8a4bab4ae1f85999e193d037)
Diffstat (limited to 'src/smalldialogs.cpp')
-rw-r--r--src/smalldialogs.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/smalldialogs.cpp b/src/smalldialogs.cpp
index 5ed0c26..ff7ca56 100644
--- a/src/smalldialogs.cpp
+++ b/src/smalldialogs.cpp
@@ -111,15 +111,15 @@ OpenDialog::OpenDialog(
TQPopupMenu* m = new TQPopupMenu(this);
int id=0;
- m->insertItem( i18n("Swap %1<->%2").tqarg("A").tqarg("B"), id++ );
- m->insertItem( i18n("Swap %1<->%2").tqarg("B").tqarg("C"), id++ );
- m->insertItem( i18n("Swap %1<->%2").tqarg("C").tqarg("A"), id++ );
- m->insertItem( i18n("Copy %1->Output").tqarg("A"), id++ );
- m->insertItem( i18n("Copy %1->Output").tqarg("B"), id++ );
- m->insertItem( i18n("Copy %1->Output").tqarg("C"), id++ );
- m->insertItem( i18n("Swap %1<->Output").tqarg("A"), id++ );
- m->insertItem( i18n("Swap %1<->Output").tqarg("B"), id++ );
- m->insertItem( i18n("Swap %1<->Output").tqarg("C"), id++ );
+ m->insertItem( i18n("Swap %1<->%2").arg("A").arg("B"), id++ );
+ m->insertItem( i18n("Swap %1<->%2").arg("B").arg("C"), id++ );
+ m->insertItem( i18n("Swap %1<->%2").arg("C").arg("A"), id++ );
+ m->insertItem( i18n("Copy %1->Output").arg("A"), id++ );
+ m->insertItem( i18n("Copy %1->Output").arg("B"), id++ );
+ m->insertItem( i18n("Copy %1->Output").arg("C"), id++ );
+ m->insertItem( i18n("Swap %1<->Output").arg("A"), id++ );
+ m->insertItem( i18n("Swap %1<->Output").arg("B"), id++ );
+ m->insertItem( i18n("Swap %1<->Output").arg("C"), id++ );
connect( m, TQT_SIGNAL(activated(int)), this, TQT_SLOT(slotSwapCopyNames(int)));
button->setPopup(m);