Code

Merge and cleanup of GSoC C++-ification project.
[inkscape.git] / src / sp-offset.cpp
index 449d7d44d143a72ed332d90d3ad9ba512954917c..51bb1e1ccc190c845e808588b3f47b2a26a99114 100644 (file)
@@ -1,5 +1,3 @@
-#define __SP_OFFSET_C__
-
 /** \file
  * Implementation of <path sodipodi:type="inkscape:offset">.
  */
@@ -8,6 +6,7 @@
  * Authors: (of the sp-spiral.c upon which this file was constructed):
  *   Mitsuru Oka <oka326@parkcity.ne.jp>
  *   Lauris Kaplinski <lauris@kaplinski.com>
+ *   Abhishek Sharma
  *
  * Copyright (C) 1999-2002 Lauris Kaplinski
  * Copyright (C) 2000-2001 Ximian, Inc.
@@ -217,31 +216,29 @@ sp_offset_build(SPObject *object, SPDocument *document, Inkscape::XML::Node *rep
     if (((SPObjectClass *) parent_class)->build)
         ((SPObjectClass *) parent_class)->build (object, document, repr);
 
-       //XML Tree being used directly here while it shouldn't be.
+    //XML Tree being used directly here while it shouldn't be.
     if (object->getRepr()->attribute("inkscape:radius")) {
-        object->readAttr( "inkscape:radius");
+        object->readAttr( "inkscape:radius" );
     } else {
-
-               
-               //XML Tree being used directly here (as object->getRepr) 
-               //in all the below lines in the block while it shouldn't be.
+        //XML Tree being used directly here (as object->getRepr) 
+        //in all the below lines in the block while it shouldn't be.
         gchar const *oldA = object->getRepr()->attribute("sodipodi:radius");
         object->getRepr()->setAttribute("inkscape:radius",oldA);
         object->getRepr()->setAttribute("sodipodi:radius",NULL);
 
-        object->readAttr( "inkscape:radius");
+        object->readAttr( "inkscape:radius" );
     }
     if (object->getRepr()->attribute("inkscape:original")) {
-        object->readAttr( "inkscape:original");
+        object->readAttr( "inkscape:original" );
     } else {
         gchar const *oldA = object->getRepr()->attribute("sodipodi:original");
         object->getRepr()->setAttribute("inkscape:original",oldA);
         object->getRepr()->setAttribute("sodipodi:original",NULL);
 
-        object->readAttr( "inkscape:original");
+        object->readAttr( "inkscape:original" );
     }
     if (object->getRepr()->attribute("xlink:href")) {
-        object->readAttr( "xlink:href");
+        object->readAttr( "xlink:href" );
     } else {
         gchar const *oldA = object->getRepr()->attribute("inkscape:href");
         if (oldA) {
@@ -254,7 +251,7 @@ sp_offset_build(SPObject *object, SPDocument *document, Inkscape::XML::Node *rep
             free(nA);
             object->getRepr()->setAttribute("inkscape:href",NULL);
         }
-        object->readAttr( "xlink:href");
+        object->readAttr( "xlink:href" );
     }
 }
 
@@ -459,7 +456,7 @@ sp_offset_set_shape(SPShape *shape)
         // just put the source shape as the offseted one, no one will notice
         // it's also useless to compute the offset with a 0 radius
 
-               //XML Tree being used directly here while it shouldn't be.
+        //XML Tree being used directly here while it shouldn't be.
         const char *res_d = SP_OBJECT(shape)->getRepr()->attribute("inkscape:original");
         if ( res_d ) {
             Geom::PathVector pv = sp_svg_read_pathv(res_d);
@@ -1151,7 +1148,7 @@ refresh_offset_source(SPOffset* offset)
         delete res;
         delete orig;
 
-               //XML Tree being used diectly here while it shouldn't be.
+        //XML Tree being used diectly here while it shouldn't be.
         SP_OBJECT (offset)->getRepr()->setAttribute("inkscape:original", res_d);
 
         free (res_d);
@@ -1179,4 +1176,4 @@ sp_offset_get_source (SPOffset *offset)
   fill-column:99
   End:
 */
-// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :
+// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :