summaryrefslogtreecommitdiff
path: root/gladeui/glade-property.h
diff options
context:
space:
mode:
authorCorentin Noël <corentin@elementary.io>2019-06-18 11:19:07 +0000
committerAlberto Fanjul <albertofanjul@gmail.com>2019-06-18 11:19:07 +0000
commitcb31354029140c54dec4ece0c98d96dd7fbe0a39 (patch)
treebc5e54bcc00e075adcf79038619ba9d3ef2a1fc9 /gladeui/glade-property.h
parentc5f717445460237d131a3a2d40285697e4560ac6 (diff)
downloadglade-cb31354029140c54dec4ece0c98d96dd7fbe0a39.tar.gz
Rename *Klass to *Class as there are no name collision anymore
Diffstat (limited to 'gladeui/glade-property.h')
-rw-r--r--gladeui/glade-property.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/gladeui/glade-property.h b/gladeui/glade-property.h
index 127f7c18..14dafff1 100644
--- a/gladeui/glade-property.h
+++ b/gladeui/glade-property.h
@@ -7,12 +7,12 @@ G_BEGIN_DECLS
#define GLADE_TYPE_PROPERTY (glade_property_get_type())
#define GLADE_PROPERTY(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GLADE_TYPE_PROPERTY, GladeProperty))
-#define GLADE_PROPERTY_KLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GLADE_TYPE_PROPERTY, GladePropertyKlass))
+#define GLADE_PROPERTY_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GLADE_TYPE_PROPERTY, GladePropertyClass))
#define GLADE_IS_PROPERTY(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GLADE_TYPE_PROPERTY))
-#define GLADE_IS_PROPERTY_KLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GLADE_TYPE_PROPERTY))
-#define GLADE_PROPERTY_GET_KLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), GLADE_PROPERTY, GladePropertyKlass))
+#define GLADE_IS_PROPERTY_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GLADE_TYPE_PROPERTY))
+#define GLADE_PROPERTY_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), GLADE_PROPERTY, GladePropertyClass))
-typedef struct _GladePropertyKlass GladePropertyKlass;
+typedef struct _GladePropertyClass GladePropertyClass;
typedef struct _GladePropertyPrivate GladePropertyPrivate;
typedef enum {
@@ -34,7 +34,7 @@ struct _GladeProperty
};
-struct _GladePropertyKlass
+struct _GladePropertyClass
{
GObjectClass parent_class;