summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/PatchageModule.cpp2
-rw-r--r--src/PatchageModule.hpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/PatchageModule.cpp b/src/PatchageModule.cpp
index 8b6a2ec..a78ee57 100644
--- a/src/PatchageModule.cpp
+++ b/src/PatchageModule.cpp
@@ -108,7 +108,7 @@ PatchageModule::load_location()
}
void
-PatchageModule::store_location()
+PatchageModule::store_location(double x, double y)
{
Coord loc(get_x(), get_y());
_app->state_manager()->set_module_location(_name, _type, loc);
diff --git a/src/PatchageModule.hpp b/src/PatchageModule.hpp
index f429831..8b7e3ef 100644
--- a/src/PatchageModule.hpp
+++ b/src/PatchageModule.hpp
@@ -50,7 +50,7 @@ public:
void load_location();
void menu_disconnect_all();
void show_dialog() {}
- void store_location();
+ void store_location(double x, double y);
ModuleType type() const { return _type; }