diff options
Diffstat (limited to 'src/PatchagePort.hpp')
-rw-r--r-- | src/PatchagePort.hpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/PatchagePort.hpp b/src/PatchagePort.hpp index 8e4c188..47c1513 100644 --- a/src/PatchagePort.hpp +++ b/src/PatchagePort.hpp @@ -39,11 +39,11 @@ class PatchagePort : public FlowCanvas::Port { public: - PatchagePort(boost::shared_ptr<FlowCanvas::Module> module, - PortType type, - const std::string& name, - bool is_input, - uint32_t color) + PatchagePort(FlowCanvas::Module& module, + PortType type, + const std::string& name, + bool is_input, + uint32_t color) : Port(module, name, is_input, color) , _type(type) { |