diff options
| author | Soren Berg <glimmer07@gmail.com> | 2009-07-16 16:28:50 +0000 |
|---|---|---|
| committer | glimmer07 <glimmer07@users.sourceforge.net> | 2009-07-16 16:28:50 +0000 |
| commit | 0c4a64e7df83742bb6d7a17f31985eed9d06ef26 (patch) | |
| tree | e0cf4304b06fa71bd786a73b42363c7f038d58e1 /src/extension/dbus/document-interface.cpp | |
| parent | Added missing (and very important) file. (diff) | |
| download | inkscape-0c4a64e7df83742bb6d7a17f31985eed9d06ef26.tar.gz inkscape-0c4a64e7df83742bb6d7a17f31985eed9d06ef26.zip | |
Whoops, fixed a bug in an incomplete method.
(bzr r8254.1.14)
Diffstat (limited to 'src/extension/dbus/document-interface.cpp')
| -rw-r--r-- | src/extension/dbus/document-interface.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/extension/dbus/document-interface.cpp b/src/extension/dbus/document-interface.cpp index e3573989a..914303a91 100644 --- a/src/extension/dbus/document-interface.cpp +++ b/src/extension/dbus/document-interface.cpp @@ -567,14 +567,15 @@ document_interface_move_to_layer (DocumentInterface *object, gchar *shape, DBUSPoint ** document_interface_get_node_coordinates (DocumentInterface *object, gchar *shape) { - //FIXME: not implemented. + //FIXME: Needs lot's of work. +/* Inkscape::XML::Node *node = document_retrive_node (sp_desktop_document (object->desk), pathname); if (node == NULL || node->attribute("d") == NULL) { g_set_error(error, DBUS_GERROR, DBUS_GERROR_REMOTE_EXCEPTION, "Object is not a path or does not exist."); return FALSE; } - char * path = strdup(node->attribute("d")); - + //char * path = strdup(node->attribute("d")); +*/ return NULL; } |
