summaryrefslogtreecommitdiff
path: root/library/PluginManager.cpp
diff options
context:
space:
mode:
authorPetr Mrázek2012-03-03 14:38:24 +0100
committerPetr Mrázek2012-03-03 14:38:24 +0100
commit7fe8762852c11caeaeb486e9b76f024f5cbaf0d6 (patch)
tree161c80a0738fa1d4d1b8fed845c59f29bd3abf9e /library/PluginManager.cpp
parent022822277d80152ca6ba4fad6102d68df35a7adc (diff)
downloaddfhack-7fe8762852c11caeaeb486e9b76f024f5cbaf0d6.tar.gz
dfhack-7fe8762852c11caeaeb486e9b76f024f5cbaf0d6.tar.bz2
dfhack-7fe8762852c11caeaeb486e9b76f024f5cbaf0d6.tar.xz
Get rid of Simple namespace, Gui module is now a namespace.
Diffstat (limited to 'library/PluginManager.cpp')
-rw-r--r--library/PluginManager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/PluginManager.cpp b/library/PluginManager.cpp
index 5d5ef357..82e53b3f 100644
--- a/library/PluginManager.cpp
+++ b/library/PluginManager.cpp
@@ -341,7 +341,7 @@ bool Plugin::can_invoke_hotkey( std::string & command, df::viewscreen *top )
else if (cmd.guard)
cr = cmd.guard(&c, top);
else
- cr = default_hotkey(&c, top);
+ cr = Gui::default_hotkey(&c, top);
break;
}
}