summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 313b0a9)
raw | patch | inline | side by side (parent: 313b0a9)
author | Ted Gould <ted@gould.cx> | |
Fri, 1 Jan 2010 04:38:19 +0000 (22:38 -0600) | ||
committer | Ted Gould <ted@gould.cx> | |
Fri, 1 Jan 2010 04:38:19 +0000 (22:38 -0600) |
src/extension/dbus/wrapper/inkscape-dbus-wrapper.c | patch | blob | history |
diff --git a/src/extension/dbus/wrapper/inkscape-dbus-wrapper.c b/src/extension/dbus/wrapper/inkscape-dbus-wrapper.c
index 5184affdfc6e2b04ae36871c99e14711a653e925..b59ee746b0d5a82ae3821e715db2ddccd9c02834 100644 (file)
DBUS_INTERFACE_DBUS);
}
+#if 0
/* PRIVATE register an object on a bus */
static gpointer
dbus_register_object (DBusGConnection *connection,
- DBusGProxy *proxy,
+ DBusGProxy * proxy,
GType object_type,
const DBusGObjectInfo *info,
const gchar *path)
dbus_g_connection_register_g_object (connection, path, object);
return object;
}
+#endif
/****************************************************************************
DOCUMENT INTERFACE CLASS STUFF
{
gdouble OUT_val;
DBusGProxy *proxy = doc->proxy;
- org_inkscape_document_document_document_get_width (proxy, &OUT_val, error);
+ org_inkscape_document_document_get_width (proxy, &OUT_val, error);
return OUT_val;
}
{
gdouble OUT_val;
DBusGProxy *proxy = doc->proxy;
- org_inkscape_document_document_document_get_height (proxy, &OUT_val, error);
+ org_inkscape_document_document_get_height (proxy, &OUT_val, error);
return OUT_val;
}
{
char * OUT_css;
DBusGProxy *proxy = doc->proxy;
- org_inkscape_document_document_document_get_css (proxy, &OUT_css, error);
+ org_inkscape_document_document_get_css (proxy, &OUT_css, error);
return OUT_css;
}
inkscape_document_set_css (DocumentInterface *doc, const char * IN_stylestring, GError **error)
{
DBusGProxy *proxy = doc->proxy;
- return org_inkscape_document_document_document_set_css (proxy, IN_stylestring, error);
+ return org_inkscape_document_document_set_css (proxy, IN_stylestring, error);
}
//static
inkscape_document_merge_css (DocumentInterface *doc, const char * IN_stylestring, GError **error)
{
DBusGProxy *proxy = doc->proxy;
- return org_inkscape_document_document_document_merge_css (proxy, IN_stylestring, error);
+ return org_inkscape_document_document_merge_css (proxy, IN_stylestring, error);
}
//static
inkscape_document_resize_to_fit_selection (DocumentInterface *doc, GError **error)
{
DBusGProxy *proxy = doc->proxy;
- return org_inkscape_document_document_document_resize_to_fit_selection (proxy, error);
+ return org_inkscape_document_document_resize_to_fit_selection (proxy, error);
}
//static