summaryrefslogtreecommitdiffstats
path: root/kdiff3plugin
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2025-01-21 14:24:12 +0900
committerMichele Calgaro <[email protected]>2025-02-03 22:19:17 +0900
commit6538b3d2235fc67aa8722eadcf11dc21ccdf622b (patch)
tree4ccaaf9f649b953484f7f40b2cb5091ff4eaf3a6 /kdiff3plugin
parentb0a8e135a1f4d43d4d232e6cf0e281096b60aa46 (diff)
downloadkdiff3-6538b3d2235fc67aa8722eadcf11dc21ccdf622b.tar.gz
kdiff3-6538b3d2235fc67aa8722eadcf11dc21ccdf622b.zip
Use tdeAppHEADmaster
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kdiff3plugin')
-rw-r--r--kdiff3plugin/kdiff3plugin.cpp12
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);
}
}