summaryrefslogtreecommitdiffstats
path: root/src/libs/gui/PatchWindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/gui/PatchWindow.h')
-rw-r--r--src/libs/gui/PatchWindow.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/libs/gui/PatchWindow.h b/src/libs/gui/PatchWindow.h
index 6e95c3d8..daa4af08 100644
--- a/src/libs/gui/PatchWindow.h
+++ b/src/libs/gui/PatchWindow.h
@@ -79,6 +79,10 @@ protected:
bool on_key_press_event(GdkEventKey* event);
private:
+
+ void patch_port_added(SharedPtr<PortModel> port);
+ void patch_port_removed(SharedPtr<PortModel> port);
+
void event_import();
void event_import_location();
void event_save();
@@ -98,6 +102,9 @@ private:
SharedPtr<PatchModel> _patch;
SharedPtr<PatchView> _view;
+ sigc::connection new_port_connection;
+ sigc::connection removed_port_connection;
+
bool _enable_signal;
bool _position_stored;
int _x;