diff options
author | Michele Calgaro <[email protected]> | 2025-01-21 14:24:12 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2025-02-03 22:19:17 +0900 |
commit | 6538b3d2235fc67aa8722eadcf11dc21ccdf622b (patch) | |
tree | 4ccaaf9f649b953484f7f40b2cb5091ff4eaf3a6 /kdiff3plugin | |
parent | b0a8e135a1f4d43d4d232e6cf0e281096b60aa46 (diff) | |
download | kdiff3-6538b3d2235fc67aa8722eadcf11dc21ccdf622b.tar.gz kdiff3-6538b3d2235fc67aa8722eadcf11dc21ccdf622b.zip |
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kdiff3plugin')
-rw-r--r-- | kdiff3plugin/kdiff3plugin.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kdiff3plugin/kdiff3plugin.cpp b/kdiff3plugin/kdiff3plugin.cpp index cc7ff36..f6988f1 100644 --- a/kdiff3plugin/kdiff3plugin.cpp +++ b/kdiff3plugin/kdiff3plugin.cpp @@ -165,7 +165,7 @@ void KDiff3Plugin::slotCompareWith() TQStringList args; args << s_pHistory->front(); args << m_list.front(); - kapp->tdeinitExec ("kdiff3", args); + tdeApp->tdeinitExec ("kdiff3", args); } } @@ -177,7 +177,7 @@ void KDiff3Plugin::slotCompareWithHistoryItem() TQStringList args; args << pAction->text(); args << m_list.front(); - kapp->tdeinitExec ("kdiff3", args); + tdeApp->tdeinitExec ("kdiff3", args); } } @@ -188,7 +188,7 @@ void KDiff3Plugin::slotCompareTwoFiles() TQStringList args; args << m_list.front(); args << m_list.back(); - kapp->tdeinitExec ("kdiff3", args); + tdeApp->tdeinitExec ("kdiff3", args); } } @@ -200,7 +200,7 @@ void KDiff3Plugin::slotCompareThreeFiles() args << m_list[0]; args << m_list[1]; args << m_list[2]; - kapp->tdeinitExec ("kdiff3", args); + tdeApp->tdeinitExec ("kdiff3", args); } } @@ -212,7 +212,7 @@ void KDiff3Plugin::slotMergeWith() args << s_pHistory->front(); args << m_list.front(); args << ( "-o" + m_list.front() ); - kapp->tdeinitExec ("kdiff3", args); + tdeApp->tdeinitExec ("kdiff3", args); } } @@ -225,7 +225,7 @@ void KDiff3Plugin::slotMergeThreeWay() args << (*s_pHistory)[0]; args << m_list.front(); args << ("-o" + m_list.front()); - kapp->tdeinitExec ("kdiff3", args); + tdeApp->tdeinitExec ("kdiff3", args); } } |