diff options
author | David Robillard <d@drobilla.net> | 2011-12-06 21:01:38 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-12-06 21:01:38 +0000 |
commit | 7a0c02f70f08aa39cba1f83be690f74949a53911 (patch) | |
tree | 636437f0740e00b36db5a1dc52210c53100c0c00 /src/PatchagePort.hpp | |
parent | 9113cdcde8bc1c54ee02a5875ba20e27a3b77fae (diff) | |
download | patchage-7a0c02f70f08aa39cba1f83be690f74949a53911.tar.gz patchage-7a0c02f70f08aa39cba1f83be690f74949a53911.tar.bz2 patchage-7a0c02f70f08aa39cba1f83be690f74949a53911.zip |
FlowCanvas's successor is hereby dubbed Ganv.
git-svn-id: http://svn.drobilla.net/lad/trunk/patchage@3820 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/PatchagePort.hpp')
-rw-r--r-- | src/PatchagePort.hpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/PatchagePort.hpp b/src/PatchagePort.hpp index c54e055..2eda81b 100644 --- a/src/PatchagePort.hpp +++ b/src/PatchagePort.hpp @@ -23,8 +23,8 @@ #include <gtkmm.h> -#include "flowcanvas/Port.hpp" -#include "flowcanvas/Module.hpp" +#include "ganv/Port.hpp" +#include "ganv/Module.hpp" #include "patchage-config.h" #include "PatchageCanvas.hpp" @@ -33,14 +33,14 @@ /** A Port on a PatchageModule */ -class PatchagePort : public FlowCanvas::Port +class PatchagePort : public Ganv::Port { public: - PatchagePort(FlowCanvas::Module& module, - PortType type, - const std::string& name, - bool is_input, - uint32_t color) + PatchagePort(Ganv::Module& module, + PortType type, + const std::string& name, + bool is_input, + uint32_t color) : Port(module, name, is_input, color) , _type(type) { @@ -55,7 +55,7 @@ public: bool on_click(GdkEventButton* ev) { if (ev->button != 3) { - return FlowCanvas::Port::on_click(ev); + return Ganv::Port::on_click(ev); } Gtk::Menu* menu = Gtk::manage(new Gtk::Menu()); |