summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorinfirit <[email protected]>2014-07-28 00:18:33 +0200
committerinfirit <[email protected]>2014-07-28 00:22:46 +0200
commit3d2442e9cf7dd3ec58db302001ca98efbfa953d0 (patch)
tree31654bf703a831d8ac18c9b7472192f0f0e91bb2
parent9f344cb590b519815f43e39b2fe1950f2a24bf92 (diff)
downloadeom-3d2442e9cf7dd3ec58db302001ca98efbfa953d0.tar.bz2
eom-3d2442e9cf7dd3ec58db302001ca98efbfa953d0.tar.xz
Don't make enum types internal
Eog bug https://bugzilla.gnome.org/show_bug.cgi?id=626257 Based on eog commit d3ee0241723db6729cb7331428293c9dc95e8cdd From Claudio Saavedra <[email protected]>
-rw-r--r--src/eom-enum-types.h.template2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eom-enum-types.h.template b/src/eom-enum-types.h.template
index e70c3b0..a13d1d2 100644
--- a/src/eom-enum-types.h.template
+++ b/src/eom-enum-types.h.template
@@ -15,7 +15,7 @@ G_BEGIN_DECLS
/*** BEGIN enumeration-production ***/
#define EOM_TYPE_@ENUMSHORT@ (@enum_name@_get_type())
-G_GNUC_INTERNAL GType @enum_name@_get_type (void) G_GNUC_CONST;
+GType @enum_name@_get_type (void) G_GNUC_CONST;
/*** END enumeration-production ***/