summaryrefslogtreecommitdiffstats
path: root/src/selection-chemistry.cpp
diff options
context:
space:
mode:
authorShlomi Fish <shlomif@shlomifish.org>2019-06-12 16:01:28 +0000
committerShlomi Fish <shlomif@shlomifish.org>2019-06-12 16:01:28 +0000
commitf724d2d99d2195dea3049bfe580b6b6f5386c7b6 (patch)
tree7b7ae06ef2f6f16436790e5da14402ec34e1c552 /src/selection-chemistry.cpp
parentUpdate comments to match reality. (diff)
downloadinkscape-f724d2d99d2195dea3049bfe580b6b6f5386c7b6.tar.gz
inkscape-f724d2d99d2195dea3049bfe580b6b6f5386c7b6.zip
Refactor: convert rotate_rel() to a method.
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 ea9d1eace..f458155d8 100755
--- a/src/selection-chemistry.cpp
+++ b/src/selection-chemistry.cpp
@@ -1867,7 +1867,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();
}