X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=src%2Fobjects%2Fgrits-object.c;fp=src%2Fobjects%2Fgrits-object.c;h=102364569cf94037aa58235e7c01409aea077824;hb=9c861e559fad5974870bba092b2851c671e20643;hp=d256bd42d65aa424297e100a1cfa2691ec081a73;hpb=de4cb2565139068b7fbb46e6410157d1899acbd1;p=grits diff --git a/src/objects/grits-object.c b/src/objects/grits-object.c index d256bd4..1023645 100644 --- a/src/objects/grits-object.c +++ b/src/objects/grits-object.c @@ -16,7 +16,7 @@ */ /** - * SECTION:gis-object + * SECTION:grits-object * @short_description: Base class for drawing operations * * Objects in grits are things which can be added to the viewer and will be @@ -24,23 +24,23 @@ * 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 grits 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 #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) { }