summaryrefslogtreecommitdiff
path: root/gtk/gtkbuilder.h
diff options
context:
space:
mode:
authorJohan Dahlin <jdahlin@async.com.br>2008-06-05 13:16:43 +0000
committerJohan Dahlin <johan@src.gnome.org>2008-06-05 13:16:43 +0000
commitf0bdc49bb892baeb6a70c7793ef90411567a0a2f (patch)
tree733c754405f3668d483218e174ac2f55b926665f /gtk/gtkbuilder.h
parentd5078b182d74e293172ec03989299ebcd1989228 (diff)
downloadgtk+-f0bdc49bb892baeb6a70c7793ef90411567a0a2f.tar.gz
Add the new version mismatch error constant to the end of the list, to
2008-06-05 Johan Dahlin <jdahlin@async.com.br> * gtk/gtkbuilder.h (enum): Add the new version mismatch error constant to the end of the list, to avoid breaking the stable ABI svn path=/trunk/; revision=20319
Diffstat (limited to 'gtk/gtkbuilder.h')
-rw-r--r--gtk/gtkbuilder.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkbuilder.h b/gtk/gtkbuilder.h
index b266bc6bca..83ec708b53 100644
--- a/gtk/gtkbuilder.h
+++ b/gtk/gtkbuilder.h
@@ -44,14 +44,14 @@ typedef struct _GtkBuilderPrivate GtkBuilderPrivate;
typedef enum
{
- GTK_BUILDER_ERROR_VERSION_MISMATCH,
GTK_BUILDER_ERROR_INVALID_TYPE_FUNCTION,
GTK_BUILDER_ERROR_UNHANDLED_TAG,
GTK_BUILDER_ERROR_MISSING_ATTRIBUTE,
GTK_BUILDER_ERROR_INVALID_ATTRIBUTE,
GTK_BUILDER_ERROR_INVALID_TAG,
GTK_BUILDER_ERROR_MISSING_PROPERTY_VALUE,
- GTK_BUILDER_ERROR_INVALID_VALUE
+ GTK_BUILDER_ERROR_INVALID_VALUE,
+ GTK_BUILDER_ERROR_VERSION_MISMATCH
} GtkBuilderError;
GQuark gtk_builder_error_quark (void);