summaryrefslogtreecommitdiff
path: root/project2/common/session.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'project2/common/session.cpp')
-rw-r--r--project2/common/session.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/project2/common/session.cpp b/project2/common/session.cpp
index 9736c4d..fd8f569 100644
--- a/project2/common/session.cpp
+++ b/project2/common/session.cpp
@@ -32,7 +32,7 @@ Session::Empty() const
VariableType
Session::GetValue(const Glib::ustring & name) const
{
- return safeMapFind<VariableNotFound>(vars, name)->second;
+ return safeMapLookup<VariableNotFound>(vars, name);
}
void