summaryrefslogtreecommitdiffstats
path: root/src/PatchageModule.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/PatchageModule.cpp')
-rw-r--r--src/PatchageModule.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/PatchageModule.cpp b/src/PatchageModule.cpp
index 31c30a8..574757f 100644
--- a/src/PatchageModule.cpp
+++ b/src/PatchageModule.cpp
@@ -23,6 +23,7 @@
PatchageModule::PatchageModule(Patchage* app,
const std::string& name,
ModuleType type,
+ ClientID id,
double x,
double y)
: Module(*app->canvas(), name, x, y)
@@ -30,6 +31,7 @@ PatchageModule::PatchageModule(Patchage* app,
, _menu(nullptr)
, _name(name)
, _type(type)
+ , _id(std::move(id))
{
signal_event().connect(sigc::mem_fun(this, &PatchageModule::on_event));