summaryrefslogtreecommitdiffstats
path: root/kdiff3plugin
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 /kdiff3plugin
parent6b0d14ea677dd82618629c82fd1eff9d7839c40d (diff)
downloadkdiff3-917939bd57b6e4eca21290640ff17d78ee954647.tar.gz
kdiff3-917939bd57b6e4eca21290640ff17d78ee954647.zip
Remove additional unneeded tq method conversions
(cherry picked from commit 9b57232f1beb774a8a4bab4ae1f85999e193d037)
Diffstat (limited to 'kdiff3plugin')
-rwxr-xr-xkdiff3plugin/kdiff3plugin.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kdiff3plugin/kdiff3plugin.cpp b/kdiff3plugin/kdiff3plugin.cpp
index 3cc6cea..9c0d3c8 100755
--- a/kdiff3plugin/kdiff3plugin.cpp
+++ b/kdiff3plugin/kdiff3plugin.cpp
@@ -101,17 +101,17 @@ KDiff3Plugin::KDiff3Plugin( KonqPopupMenu* pPopupmenu, const char *name, const T
if(m_list.count() == 1)
{
int historyCount = s_pHistory ? s_pHistory->count() : 0;
- s = i18n("Compare with %1").tqarg( historyCount>0 ? s_pHistory->front() : TQString() );
+ s = i18n("Compare with %1").arg( historyCount>0 ? s_pHistory->front() : TQString() );
pAction = new KAction ( s,0, this, TQT_SLOT(slotCompareWith()), actionCollection());
pAction->setEnabled( m_list.count()>0 && historyCount>0 );
pActionMenu->insert (pAction);
- s = i18n("Merge with %1").tqarg( historyCount>0 ? s_pHistory->front() : TQString() );
+ s = i18n("Merge with %1").arg( historyCount>0 ? s_pHistory->front() : TQString() );
pAction = new KAction( s, 0, this, TQT_SLOT(slotMergeWith()), actionCollection());
pAction->setEnabled( m_list.count()>0 && historyCount>0 );
pActionMenu->insert (pAction);
- s = i18n("Save '%1' for later").tqarg( ( m_list.front() ) );
+ s = i18n("Save '%1' for later").arg( ( m_list.front() ) );
pAction = new KAction ( s, 0, this, TQT_SLOT(slotSaveForLater()), actionCollection());
pAction->setEnabled( m_list.count()>0 );
pActionMenu->insert(pAction);