Make the assert()s here look like the assert()s in all the other ValueNode definitions.
authordooglus <dooglus@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Thu, 10 Jan 2008 19:02:09 +0000 (19:02 +0000)
committerdooglus <dooglus@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Thu, 10 Jan 2008 19:02:09 +0000 (19:02 +0000)
git-svn-id: http://svn.voria.com/code@1316 1f10aa63-cdf2-0310-b900-c93c546f37ac

synfig-core/trunk/src/modules/mod_noise/valuenode_random.cpp

index 4b7255e..101f793 100644 (file)
@@ -176,6 +176,7 @@ bool
 ValueNode_Random::set_link_vfunc(int i,ValueNode::Handle x)
 {
        assert(i>=0 && i<link_count());
+
        switch(i)
        {
        case 0:
@@ -206,6 +207,7 @@ ValueNode::LooseHandle
 ValueNode_Random::get_link_vfunc(int i)const
 {
        assert(i>=0 && i<link_count());
+
        switch(i)
        {
        case 0: return link_;
@@ -227,6 +229,7 @@ String
 ValueNode_Random::link_name(int i)const
 {
        assert(i>=0 && i<link_count());
+
        switch(i)
        {
        case 0: return "link";
@@ -242,6 +245,7 @@ String
 ValueNode_Random::link_local_name(int i)const
 {
        assert(i>=0 && i<link_count());
+
        switch(i)
        {
        case 0: return _("Link");