summaryrefslogtreecommitdiff
path: root/src/Task.cc
diff options
context:
space:
mode:
authorPixel <pixel@nobis-crew.org>2012-04-01 07:18:00 -0700
committerPixel <pixel@nobis-crew.org>2012-04-01 07:18:00 -0700
commit1fdf750ee66ee9e4e872d2810e9ca3bcfa2d555e (patch)
tree2d7b8ddbae76d1924fec41bc74f7ebeb730ac6ff /src/Task.cc
parent8dfe080bf03fde34415f3edfbb0426260eeaeaec (diff)
More code cleanup.
Diffstat (limited to 'src/Task.cc')
-rw-r--r--src/Task.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Task.cc b/src/Task.cc
index 0938ff3..6278fd5 100644
--- a/src/Task.cc
+++ b/src/Task.cc
@@ -161,10 +161,10 @@ void Balau::Events::TaskEvent::signal() {
}
void Balau::Events::TaskEvent::gotOwner(Task * task) {
- TaskMan * tm = task->getMyTaskMan();
+ TaskMan * tm = task->getTaskMan();
m_evt.stop();
- if (tm != m_taskWaited->getMyTaskMan()) {
+ if (tm != m_taskWaited->getTaskMan()) {
m_evt.set(tm->getLoop());
m_evt.set<TaskEvent, &TaskEvent::evt_cb>(this);
m_evt.start();