diff --git a/app/node/param.cpp b/app/node/param.cpp index d39603ec2..3a9752dc3 100644 --- a/app/node/param.cpp +++ b/app/node/param.cpp @@ -20,7 +20,6 @@ #include "param.h" -#include #include #include #include @@ -30,6 +29,7 @@ #include "node/node.h" #include "node/input.h" #include "node/output.h" +#include "render/color.h" NodeParam::NodeParam(const QString &id) : id_(id), @@ -189,7 +189,7 @@ QByteArray NodeParam::ValueToBytes(const NodeParam::DataType &type, const QVaria switch (type) { case kInt: return ValueToBytesInternal(value); case kFloat: return ValueToBytesInternal(value); - case kColor: return ValueToBytesInternal(value); + case kColor: return ValueToBytesInternal(value); case kText: return ValueToBytesInternal(value); case kBoolean: return ValueToBytesInternal(value); case kFont: return ValueToBytesInternal(value); // FIXME: This should probably be a QFont?