]> git.draconx.ca Git - upkg.git/blobdiff - src/exportable.c
uobject: Namespace changes.
[upkg.git] / src / exportable.c
index 5553014b3d86cc1222c6c064439edba41028bdeb..8bda8506324711dfc949eca218a5cc059a8d3ab1 100644 (file)
@@ -21,7 +21,7 @@
 #include <glib-object.h>
 #include <uobject/exportable.h>
 
-GType uobject_exportable_get_type(void)
+GType u_object_exportable_get_type(void)
 {
        static GType type = 0;
        if (type == 0) {
@@ -37,14 +37,14 @@ GType uobject_exportable_get_type(void)
        return type;
 }
 
-int uobject_export(GObject *obj, FILE *f)
+int u_object_export(GObject *obj, FILE *f)
 {
-       g_return_val_if_fail(UOBJECT_IS_EXPORTABLE(obj), -1);
-       return UOBJECT_EXPORTABLE_GET_INTERFACE(obj)->export(obj, f);
+       g_return_val_if_fail(U_OBJECT_IS_EXPORTABLE(obj), -1);
+       return U_OBJECT_EXPORTABLE_GET_INTERFACE(obj)->export(obj, f);
 }
 
-int uobject_export_name(GObject *obj, char *buf, size_t n)
+int u_object_export_name(GObject *obj, char *buf, size_t n)
 {
-       g_return_val_if_fail(UOBJECT_IS_EXPORTABLE(obj), -1);
-       return UOBJECT_EXPORTABLE_GET_INTERFACE(obj)->export_name(obj, buf, n);
+       g_return_val_if_fail(U_OBJECT_IS_EXPORTABLE(obj), -1);
+       return U_OBJECT_EXPORTABLE_GET_INTERFACE(obj)->export_name(obj, buf, n);
 }