diff -Nur /tmp/scbYBfLziB/sentinella-0.6.2-1ubuntu1/debian/changelog /tmp/scbYBfLziB/sentinella-0.6.2-1ubuntu2/debian/changelog --- sentinella-0.6.2-1ubuntu1/debian/changelog 2010-06-28 22:47:00.000000000 +0200 +++ sentinella-0.6.2-1ubuntu2/debian/changelog 2010-07-01 16:24:55.196934775 +0200 @@ -1,3 +1,10 @@ +sentinella (0.6.2-1ubuntu2) maverick; urgency=low + + * Added patch to make sentinella work with the kdebase-workspace + (>= 4:4.4.90) + + -- Niels Thykier Thu, 01 Jul 2010 16:22:24 +0200 + sentinella (0.6.2-1ubuntu1) maverick; urgency=low * Merge from debian unstable (LP: #599270). New changes: diff -Nur /tmp/scbYBfLziB/sentinella-0.6.2-1ubuntu1/debian/patches/series /tmp/scbYBfLziB/sentinella-0.6.2-1ubuntu2/debian/patches/series --- sentinella-0.6.2-1ubuntu1/debian/patches/series 2010-06-18 17:27:06.000000000 +0200 +++ sentinella-0.6.2-1ubuntu2/debian/patches/series 2010-07-01 16:24:30.360951062 +0200 @@ -1,3 +1,4 @@ 02_fedora_link.patch bp_close_process.patch bp_alc_leak_on_error.patch +ubuntu-kde.patch diff -Nur /tmp/scbYBfLziB/sentinella-0.6.2-1ubuntu1/debian/patches/ubuntu-kde.patch /tmp/scbYBfLziB/sentinella-0.6.2-1ubuntu2/debian/patches/ubuntu-kde.patch --- sentinella-0.6.2-1ubuntu1/debian/patches/ubuntu-kde.patch 1970-01-01 01:00:00.000000000 +0100 +++ sentinella-0.6.2-1ubuntu2/debian/patches/ubuntu-kde.patch 2010-07-01 16:24:04.925346971 +0200 @@ -0,0 +1,21 @@ +Description: Patch to work with Ubuntu's version of kdeworkspace +Author: Niels Thykier + +diff --git a/src/Actions/KillProcess.cpp b/src/Actions/KillProcess.cpp +index d2b3fda..a51499f 100644 +--- a/src/Actions/KillProcess.cpp ++++ b/src/Actions/KillProcess.cpp +@@ -21,11 +21,11 @@ + #include "KillProcess.h" + + KillProcess::KillProcess(const pid_t pid) : AbstractAction(), pid(pid) { +- processes = KSysGuard::Processes::getInstance(); ++ processes = new KSysGuard::Processes(); + } + + KillProcess::~KillProcess() { +- KSysGuard::Processes::returnInstance(); ++ delete processes; + } + + void KillProcess::execute() {