]> Pileus Git - grits/blobdiff - src/objects/grits-object.c
libgis -> grits: Update functions/types/etc
[grits] / src / objects / grits-object.c
index 9eff935f2efae3f0df77622f3fc7e029299faa46..102364569cf94037aa58235e7c01409aea077824 100644 (file)
  */
 
 /**
- * SECTION:gis-object
+ * SECTION:grits-object
  * @short_description: Base class for drawing operations
  *
- * Objects in libgis are things which can be added to the viewer and will be
+ * Objects in grits are things which can be added to the viewer and will be
  * displayed to the user. Each object has information such as it's location and
  * level of detail which are used by the viewer to determine which objects
  * should be drawn.
  *
- * Each #GisObject is also a #GObject, but not every GObject in libgis is a
- * GisObject. The "Object" part of the name is just coincidence.
+ * Each #GritsObject is also a #GObject, but not every GObject in grits is a
+ * GritsObject. The "Object" part of the name is just coincidence.
  */
 
 #include <config.h>
-#include "gis-object.h"
+#include "grits-object.h"
 
 
-/*************
- * GisObject *
- *************/
+/***************
+ * GritsObject *
+ ***************/
 /* GObject stuff */
-G_DEFINE_ABSTRACT_TYPE(GisObject, gis_object, G_TYPE_OBJECT);
-static void gis_object_init(GisObject *object)
+G_DEFINE_ABSTRACT_TYPE(GritsObject, grits_object, G_TYPE_OBJECT);
+static void grits_object_init(GritsObject *object)
 {
 }
 
-static void gis_object_class_init(GisObjectClass *klass)
+static void grits_object_class_init(GritsObjectClass *klass)
 {
 }