summaryrefslogtreecommitdiff
path: root/plugins/cleaners.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 /plugins/cleaners.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 'plugins/cleaners.cpp')
-rw-r--r--plugins/cleaners.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/cleaners.cpp b/plugins/cleaners.cpp
index 42bb9e75..3e5d0376 100644
--- a/plugins/cleaners.cpp
+++ b/plugins/cleaners.cpp
@@ -16,7 +16,6 @@
using std::vector;
using std::string;
using namespace DFHack;
-using namespace DFHack::Simple;
using namespace df::enums;
using df::global::world;
@@ -208,7 +207,7 @@ DFhackCExport command_result plugin_init ( Core * c, std::vector <PluginCommand>
));
commands.push_back(PluginCommand(
"spotclean","Cleans map tile under cursor.",
- spotclean,cursor_hotkey
+ spotclean,Gui::cursor_hotkey
));
return CR_OK;
}