From 8dc712f472d18ea7b5c179334652cfbdc33cbe30 Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Fri, 16 Oct 2009 16:04:18 -0500 Subject: Oops, shouldn't be CLUTTER there. --- src/libcustomindicator/custom-indicator-enum-types.h.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/libcustomindicator/custom-indicator-enum-types.h.in') diff --git a/src/libcustomindicator/custom-indicator-enum-types.h.in b/src/libcustomindicator/custom-indicator-enum-types.h.in index 4f636d4..4a6c9bd 100644 --- a/src/libcustomindicator/custom-indicator-enum-types.h.in +++ b/src/libcustomindicator/custom-indicator-enum-types.h.in @@ -28,6 +28,6 @@ G_END_DECLS Return value: A registered type for the enum */ GType @EnumName@_get_type (void) G_GNUC_CONST; -#define CLUTTER_TYPE_@ENUMSHORT@ (@EnumName@_get_type()) +#define CUSTOM_INDICATOR_TYPE_@ENUMSHORT@ (@EnumName@_get_type()) /*** END value-header ***/ -- cgit v1.2.3 From 72815e195b42b8c4ed94f09af4b86a0d94393e5e Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Sat, 17 Oct 2009 22:25:10 -0500 Subject: Getting the name change into the templates properly. --- src/libcustomindicator/custom-indicator-enum-types.h.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/libcustomindicator/custom-indicator-enum-types.h.in') diff --git a/src/libcustomindicator/custom-indicator-enum-types.h.in b/src/libcustomindicator/custom-indicator-enum-types.h.in index 4a6c9bd..e037be7 100644 --- a/src/libcustomindicator/custom-indicator-enum-types.h.in +++ b/src/libcustomindicator/custom-indicator-enum-types.h.in @@ -21,13 +21,13 @@ G_END_DECLS /*** BEGIN value-header ***/ /** - @EnumName@_get_type: + @enum_name@_get_type: Builds a glib type for the @EnumName@ enumeration. Return value: A registered type for the enum */ -GType @EnumName@_get_type (void) G_GNUC_CONST; -#define CUSTOM_INDICATOR_TYPE_@ENUMSHORT@ (@EnumName@_get_type()) +GType @enum_name@_get_type (void) G_GNUC_CONST; +#define CUSTOM_INDICATOR_TYPE_@ENUMSHORT@ (@enum_name@_get_type()) /*** END value-header ***/ -- cgit v1.2.3