Rename the Random class in the mod_noise module to RandomNoise to stop it clashing...
[synfig.git] / synfig-core / trunk / src / modules / mod_noise / valuenode_random.h
index d1818d1..f29d0e4 100644 (file)
@@ -29,7 +29,7 @@
 /* === H E A D E R S ======================================================= */
 
 #include "synfig/valuenode.h"
-#include "random.h"
+#include "random_noise.h"
 
 /* === M A C R O S ========================================================= */
 
@@ -45,8 +45,8 @@ class ValueNode_Random : public LinkableValueNode
        ValueNode::RHandle speed_;
        ValueNode::RHandle smooth_;
 
-       mutable Random random;
-       Random::SmoothType smooth;
+       mutable RandomNoise random;
+       RandomNoise::SmoothType smooth;
        ValueNode_Random(const ValueBase &value);
 
 public: