aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/libcustomindicator/custom-indicator-enum-types.c.in2
-rw-r--r--src/libcustomindicator/custom-indicator-enum-types.h.in9
2 files changed, 5 insertions, 6 deletions
diff --git a/src/libcustomindicator/custom-indicator-enum-types.c.in b/src/libcustomindicator/custom-indicator-enum-types.c.in
index 51512f6..3f97040 100644
--- a/src/libcustomindicator/custom-indicator-enum-types.c.in
+++ b/src/libcustomindicator/custom-indicator-enum-types.c.in
@@ -9,7 +9,7 @@
/*** BEGIN value-header ***/
GType
-@enum_name@_get_type (void)
+@EnumName@_get_type (void)
{
static GType etype = 0;
if (G_UNLIKELY(etype == 0)) {
diff --git a/src/libcustomindicator/custom-indicator-enum-types.h.in b/src/libcustomindicator/custom-indicator-enum-types.h.in
index 8afe619..4f636d4 100644
--- a/src/libcustomindicator/custom-indicator-enum-types.h.in
+++ b/src/libcustomindicator/custom-indicator-enum-types.h.in
@@ -21,14 +21,13 @@ G_END_DECLS
/*** BEGIN value-header ***/
/**
- @enum_name@_get_type:
+ @EnumName@_get_type:
- Builds a glib type for the @enum_name@ enumeration
- defined in the file @filename@.
+ Builds a glib type for the @EnumName@ enumeration.
Return value: A registered type for the enum
*/
-GType @enum_name@_get_type (void) G_GNUC_CONST;
-#define CLUTTER_TYPE_@ENUMSHORT@ (@enum_name@_get_type())
+GType @EnumName@_get_type (void) G_GNUC_CONST;
+#define CLUTTER_TYPE_@ENUMSHORT@ (@EnumName@_get_type())
/*** END value-header ***/