diff options
-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)) |