diff options
| author | Tavmjong Bah <tavmjong@free.fr> | 2017-03-13 20:23:59 +0000 |
|---|---|---|
| committer | tavmjong-free <tavmjong@free.fr> | 2017-03-13 20:23:59 +0000 |
| commit | e0626ac2b4137fbfcd474b234f93e21da55dfd62 (patch) | |
| tree | 6b42749af43e21c7d938f9f3028faeb701c7d0c8 /src/extension/dbus/document-interface.cpp | |
| parent | Replace rectangle based zooming by affine based zooming. (diff) | |
| download | inkscape-e0626ac2b4137fbfcd474b234f93e21da55dfd62.tar.gz inkscape-e0626ac2b4137fbfcd474b234f93e21da55dfd62.zip | |
Attempt to fix build with dbus enabled.
(bzr r15593)
Diffstat (limited to '')
| -rw-r--r-- | src/extension/dbus/document-interface.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/extension/dbus/document-interface.cpp b/src/extension/dbus/document-interface.cpp index d3a06b81c..353ed324c 100644 --- a/src/extension/dbus/document-interface.cpp +++ b/src/extension/dbus/document-interface.cpp @@ -606,11 +606,7 @@ document_interface_document_set_display_area (DocumentInterface *doc_interface, { SPDesktop *desk = doc_interface->target.getDesktop(); g_return_val_if_fail(ensure_desktop_valid(desk, error), FALSE); - desk->set_display_area (x0, - y0, - x1, - y1, - border, false); + desk->set_display_area (Geom::Rect( Geom::Point(x0,y0), Geom::Point(x1,y1), border, false )); return TRUE; } |
