diff options
| author | Petr Mrázek | 2012-03-03 14:38:24 +0100 |
|---|---|---|
| committer | Petr Mrázek | 2012-03-03 14:38:24 +0100 |
| commit | 7fe8762852c11caeaeb486e9b76f024f5cbaf0d6 (patch) | |
| tree | 161c80a0738fa1d4d1b8fed845c59f29bd3abf9e /plugins/initflags.cpp | |
| parent | 022822277d80152ca6ba4fad6102d68df35a7adc (diff) | |
| download | dfhack-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/initflags.cpp')
| -rw-r--r-- | plugins/initflags.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/initflags.cpp b/plugins/initflags.cpp index c9bbe458..1125b625 100644 --- a/plugins/initflags.cpp +++ b/plugins/initflags.cpp @@ -23,9 +23,9 @@ DFhackCExport command_result plugin_init (Core *c, std::vector <PluginCommand> & { if (d_init) { commands.push_back(PluginCommand("twaterlvl", "Toggle display of water/magma depth.", - twaterlvl, dwarfmode_hotkey)); + twaterlvl, Gui::dwarfmode_hotkey)); commands.push_back(PluginCommand("tidlers", "Toggle display of idlers.", - tidlers, dwarfmode_hotkey)); + tidlers, Gui::dwarfmode_hotkey)); } std::cerr << "d_init: " << sizeof(df::d_init) << endl; return CR_OK; |
