summaryrefslogtreecommitdiff
path: root/tests/scanner/drawable.h
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2010-08-18 19:38:05 -0400
committerColin Walters <walters@verbum.org>2010-08-31 16:05:56 -0400
commitf58c9cd835c6e5077496ea4abf18ecd8907c3288 (patch)
treeb9270b891cb9223a8cc12add7fb030e3f07e2a65 /tests/scanner/drawable.h
parent456a79cb1d3fee93a3e6e1af9ef2948b0866bdd3 (diff)
downloadgobject-introspection-f58c9cd835c6e5077496ea4abf18ecd8907c3288.tar.gz
tests: Fix namespacing for BarApp (should be just Bar)
Diffstat (limited to 'tests/scanner/drawable.h')
-rw-r--r--tests/scanner/drawable.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/tests/scanner/drawable.h b/tests/scanner/drawable.h
index 98a70105..ccc2a0ef 100644
--- a/tests/scanner/drawable.h
+++ b/tests/scanner/drawable.h
@@ -1,31 +1,31 @@
-#ifndef __TEST_DRAWABLE_H__
-#define __TEST_DRAWABLE_H__
+#ifndef __TEST_INHERIT_DRAWABLE_H__
+#define __TEST_INHERIT_DRAWABLE_H__
#include <glib-object.h>
-typedef struct _TestDrawable TestDrawable;
-typedef struct _TestDrawableClass TestDrawableClass;
+typedef struct _TestInheritDrawable TestInheritDrawable;
+typedef struct _TestInheritDrawableClass TestInheritDrawableClass;
-struct _TestDrawable
+struct _TestInheritDrawable
{
GObject parent_instance;
};
-struct _TestDrawableClass
+struct _TestInheritDrawableClass
{
GObjectClass parent_class;
};
-GType test_drawable_get_type (void) G_GNUC_CONST;
+GType test_inherit_drawable_get_type (void) G_GNUC_CONST;
-void test_drawable_do_foo (TestDrawable *drawable, int x);
-void test_drawable_get_origin (TestDrawable *drawable, int *x, int *y);
-void test_drawable_get_size (TestDrawable *drawable, guint *width, guint *height);
-void test_drawable_do_foo_maybe_throw (TestDrawable *drawable, int x, GError **error);
+void test_inherit_drawable_do_foo (TestInheritDrawable *drawable, int x);
+void test_inherit_drawable_get_origin (TestInheritDrawable *drawable, int *x, int *y);
+void test_inherit_drawable_get_size (TestInheritDrawable *drawable, guint *width, guint *height);
+void test_inherit_drawable_do_foo_maybe_throw (TestInheritDrawable *drawable, int x, GError **error);
-struct _TestPixmapObjectClass
+struct _TestInheritPixmapObjectClass
{
- TestDrawableClass parent_class;
+ TestInheritDrawableClass parent_class;
};
-#endif /* __TEST_DRAWABLE_H__ */
+#endif /* __TEST_INHERIT_DRAWABLE_H__ */