Remove spaces and tabs at end of lines.
[synfig.git] / synfig-core / trunk / src / synfig / value.cpp
index 0a85c9b..e5ef475 100644 (file)
@@ -105,7 +105,7 @@ ValueBase::get_string() const
        case TYPE_NIL:                  return "Nil";
        case TYPE_BOOL:                 return strprintf("Bool (%s)", get(bool()) ? "true" : "false");
        case TYPE_INTEGER:              return strprintf("Integer (%s)", get(int()));
-       case TYPE_ANGLE:                return strprintf("Angle (%s)", Angle::deg(get(Angle())).get());
+       case TYPE_ANGLE:                return strprintf("Angle (%.2f)", Angle::deg(get(Angle())).get());
 
                // All types after this point are larger than 32 bits
 
@@ -118,7 +118,7 @@ ValueBase::get_string() const
        case TYPE_COLOR:                return strprintf("Color (%s)", get(Color()).get_string().c_str());
        case TYPE_SEGMENT:              return strprintf("Segment ((%f, %f) to (%f, %f))", get(Segment()).p1[0], get(Segment()).p1[1], get(Segment()).p2[0], get(Segment()).p2[1]);
        case TYPE_BLINEPOINT:   return strprintf("BLinePoint (%s)", get(BLinePoint()).get_vertex()[0], get(BLinePoint()).get_vertex()[1]);
-               
+
                // All types after this point require construction/destruction
 
        case TYPE_LIST:                 return strprintf("List (%d elements)", get(list_type()).size());