summaryrefslogtreecommitdiff
path: root/src/context/context.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/context/context.cpp')
-rw-r--r--src/context/context.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/context/context.cpp b/src/context/context.cpp
index abb1575d4..da60a5bc4 100644
--- a/src/context/context.cpp
+++ b/src/context/context.cpp
@@ -80,7 +80,7 @@ void Context::pop() {
while(pCNO != NULL) {
// pre-store the "next" pointer in case pCNO deletes itself on notify()
ContextNotifyObj* next = pCNO->d_pCNOnext;
- pCNO->notify();
+ pCNO->contextNotifyPop();
pCNO = next;
}
@@ -101,7 +101,7 @@ void Context::pop() {
while(pCNO != NULL) {
// pre-store the "next" pointer in case pCNO deletes itself on notify()
ContextNotifyObj* next = pCNO->d_pCNOnext;
- pCNO->notify();
+ pCNO->contextNotifyPop();
pCNO = next;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback