summaryrefslogtreecommitdiffstats
path: root/src/selection-chemistry.cpp
diff options
context:
space:
mode:
authorMarc Jeanmougin <marc@jeanmougin.fr>2019-06-20 13:08:43 +0000
committerMarc Jeanmougin <marc@jeanmougin.fr>2019-06-20 13:08:43 +0000
commita6538efd22aae68fae6dca99748f13981e547922 (patch)
tree6765cbf522a7ef884483dc8c8ed29117f8a9e9a3 /src/selection-chemistry.cpp
parentRemove unused code. (diff)
parentRefactoring: replace funcs with methods. (diff)
downloadinkscape-a6538efd22aae68fae6dca99748f13981e547922.tar.gz
inkscape-a6538efd22aae68fae6dca99748f13981e547922.zip
Merge branch 'refactoring' of gitlab.com:shlomif/inkscape
Diffstat (limited to 'src/selection-chemistry.cpp')
-rwxr-xr-xsrc/selection-chemistry.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/selection-chemistry.cpp b/src/selection-chemistry.cpp
index fc3c8ae84..4c17db511 100755
--- a/src/selection-chemistry.cpp
+++ b/src/selection-chemistry.cpp
@@ -1868,7 +1868,7 @@ void ObjectSet::rotate90(bool ccw)
for (auto l=items_copy.begin();l!=items_copy.end() ;++l) {
SPItem *item = *l;
if (item) {
- sp_item_rotate_rel(item, rot_90);
+ item->rotate_rel(rot_90);
} else {
g_assert_not_reached();
}