aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-10-16 14:31:50 -0500
committerTed Gould <ted@canonical.com>2009-10-16 14:31:50 -0500
commit00c47642a916ef41e7237b7ab84a488557876640 (patch)
tree0ba7432216f7f0215595f531e87c911d634cc4bd /src
parent0b6ffb4f6ba06d90d2744fb29d929b9872947a9f (diff)
downloadayatana-indicator-application-00c47642a916ef41e7237b7ab84a488557876640.tar.gz
ayatana-indicator-application-00c47642a916ef41e7237b7ab84a488557876640.tar.bz2
ayatana-indicator-application-00c47642a916ef41e7237b7ab84a488557876640.zip
Fixing the templates.
Diffstat (limited to 'src')
-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 ***/