From 5a2358e39602607757fedd08a7355bede3cb8739 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 6 Jun 2007 02:51:08 +0000 Subject: Nicer Flowcanvas naming. git-svn-id: http://svn.drobilla.net/lad/patchage@529 a436a847-0d15-0410-975c-d299462d15a1 --- src/PatchageModule.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/PatchageModule.h') 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 #endif -#include +#include #include -#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 canvas = _canvas.lock(); + boost::shared_ptr 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() { -- cgit v1.2.1