diff options
author | David Robillard <d@drobilla.net> | 2011-12-02 20:17:10 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-12-02 20:17:10 +0000 |
commit | 3575587637cab3f31a781fd646bf6a84362bfeb1 (patch) | |
tree | db96e52dd3471c93491d45686f7181d0d6609f31 /src/gui/PatchCanvas.cpp | |
parent | 9e667623767be67458396cc96807ee4a64e4e7c7 (diff) | |
download | ingen-3575587637cab3f31a781fd646bf6a84362bfeb1.tar.gz ingen-3575587637cab3f31a781fd646bf6a84362bfeb1.tar.bz2 ingen-3575587637cab3f31a781fd646bf6a84362bfeb1.zip |
Node => Circle.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3750 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui/PatchCanvas.cpp')
-rw-r--r-- | src/gui/PatchCanvas.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/PatchCanvas.cpp b/src/gui/PatchCanvas.cpp index 89cb541c..1252cfa9 100644 --- a/src/gui/PatchCanvas.cpp +++ b/src/gui/PatchCanvas.cpp @@ -21,7 +21,7 @@ #include <boost/format.hpp> #include "raul/log.hpp" #include "flowcanvas/Canvas.hpp" -#include "flowcanvas/Node.hpp" +#include "flowcanvas/Circle.hpp" #include "ingen/ServerInterface.hpp" #include "ingen/shared/LV2URIMap.hpp" #include "ingen/shared/Builder.hpp" @@ -48,7 +48,7 @@ #define LOG(s) s << "[PatchCanvas] " -#define FOREACH_ITEM(iter, coll) \ +#define FOREACH_ITEM(iter, coll) \ for (Items::const_iterator (iter) = coll.begin(); \ (iter) != coll.end(); ++(iter)) |