summaryrefslogtreecommitdiffstats
path: root/src/PatchageModule.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-06-06 02:51:08 +0000
committerDavid Robillard <d@drobilla.net>2007-06-06 02:51:08 +0000
commit5a2358e39602607757fedd08a7355bede3cb8739 (patch)
tree97e7c12667966a8bbc4e9d29a8eceb52fca18fb2 /src/PatchageModule.h
parenta62edb3f48133352c085e58c970cd77790d47df2 (diff)
downloadpatchage-5a2358e39602607757fedd08a7355bede3cb8739.tar.gz
patchage-5a2358e39602607757fedd08a7355bede3cb8739.tar.bz2
patchage-5a2358e39602607757fedd08a7355bede3cb8739.zip
Nicer Flowcanvas naming.
git-svn-id: http://svn.drobilla.net/lad/patchage@529 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/PatchageModule.h')
-rw-r--r--src/PatchageModule.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/PatchageModule.h b/src/PatchageModule.h
index 3dee3c6..131c86a 100644
--- a/src/PatchageModule.h
+++ b/src/PatchageModule.h
@@ -23,15 +23,15 @@
#ifdef HAVE_ALSA
#include <alsa/asoundlib.h>
#endif
-#include <flowcanvas/FlowCanvas.h>
+#include <flowcanvas/Canvas.h>
#include <flowcanvas/Module.h>
-#include "PatchageFlowCanvas.h"
+#include "PatchageCanvas.h"
#include "StateManager.h"
#include "PatchagePort.h"
using std::string; using std::list;
-using namespace LibFlowCanvas;
+using namespace FlowCanvas;
class PatchageModule : public Module
{
@@ -76,7 +76,7 @@ public:
virtual void load_location() {
- boost::shared_ptr<FlowCanvas> canvas = _canvas.lock();
+ boost::shared_ptr<Canvas> canvas = _canvas.lock();
if (!canvas)
return;
@@ -113,7 +113,7 @@ public:
virtual void on_click(GdkEventButton* ev) {
if (ev->button == 3)
_menu.popup(ev->button, ev->time);
- LibFlowCanvas::Item::on_click(ev);
+ FlowCanvas::Item::on_click(ev);
}
virtual void menu_disconnect_all() {