summaryrefslogtreecommitdiffstats
path: root/src/shape-editor.cpp
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2008-09-11 21:44:48 +0000
committerjohanengelen <johanengelen@users.sourceforge.net>2008-09-11 21:44:48 +0000
commit4c9d5ef55883fd94094371813f80cfef0befcf74 (patch)
tree2705753419ba635ce155a5821b55ec481af19125 /src/shape-editor.cpp
parentMake tooltip reflect the correct range for calligraphy angle fixation (diff)
downloadinkscape-4c9d5ef55883fd94094371813f80cfef0befcf74.tar.gz
inkscape-4c9d5ef55883fd94094371813f80cfef0befcf74.zip
convert almost all libnrtype to Geom::
(bzr r6793)
Diffstat (limited to '')
-rw-r--r--src/shape-editor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shape-editor.cpp b/src/shape-editor.cpp
index 32c20ace6..d59e7f0bc 100644
--- a/src/shape-editor.cpp
+++ b/src/shape-editor.cpp
@@ -565,7 +565,7 @@ void ShapeEditor::select_next () {
if (this->nodepath) {
sp_nodepath_select_next (this->nodepath);
if (this->nodepath->numSelected() >= 1) {
- this->desktop->scroll_to_point(&(this->nodepath->singleSelectedCoords()), 1.0);
+ this->desktop->scroll_to_point(this->nodepath->singleSelectedCoords(), 1.0);
}
}
}
@@ -573,7 +573,7 @@ void ShapeEditor::select_prev () {
if (this->nodepath) {
sp_nodepath_select_prev (this->nodepath);
if (this->nodepath->numSelected() >= 1) {
- this->desktop->scroll_to_point(&(this->nodepath->singleSelectedCoords()), 1.0);
+ this->desktop->scroll_to_point(this->nodepath->singleSelectedCoords(), 1.0);
}
}
}