summaryrefslogtreecommitdiff
path: root/src/context.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/context.cc')
-rw-r--r--src/context.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/context.cc b/src/context.cc
index ece4a2f4..03cf1586 100644
--- a/src/context.cc
+++ b/src/context.cc
@@ -96,7 +96,7 @@ const SelectionList& JumpList::forward(Context& context, int count)
res.update();
context.print_status({ format("jumped to #{} ({})",
m_current, m_jumps.size() - 1),
- get_face("Information") });
+ context.faces()["Information"] });
return res;
}
throw runtime_error("no next jump");
@@ -117,7 +117,7 @@ const SelectionList& JumpList::backward(Context& context, int count)
res.update();
context.print_status({ format("jumped to #{} ({})",
m_current, m_jumps.size() - 1),
- get_face("Information") });
+ context.faces()["Information"] });
return res;
}
if (m_current != 0)
@@ -133,7 +133,7 @@ const SelectionList& JumpList::backward(Context& context, int count)
res.update();
context.print_status({ format("jumped to #{} ({})",
m_current, m_jumps.size() - 1),
- get_face("Information") });
+ context.faces()["Information"] });
return res;
}
throw runtime_error("no previous jump");