diff options
| author | Maximilian Albert <maximilian.albert@gmail.com> | 2008-09-18 17:42:51 +0000 |
|---|---|---|
| committer | cilix42 <cilix42@users.sourceforge.net> | 2008-09-18 17:42:51 +0000 |
| commit | 1ae6235112448547c758dd643a9ddd267a6cd580 (patch) | |
| tree | 2bb449941d10f4b71629a75d741465429e0ebfa0 /src/removeoverlap/removeoverlap.cpp | |
| parent | Some NR::Point ==> Geom::Point replacements (diff) | |
| download | inkscape-1ae6235112448547c758dd643a9ddd267a6cd580.tar.gz inkscape-1ae6235112448547c758dd643a9ddd267a6cd580.zip | |
More NR ==> Geom conversion (points and some matrices/transforms)
(bzr r6836)
Diffstat (limited to 'src/removeoverlap/removeoverlap.cpp')
| -rw-r--r-- | src/removeoverlap/removeoverlap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/removeoverlap/removeoverlap.cpp b/src/removeoverlap/removeoverlap.cpp index 0562123de..c2cd6d213 100644 --- a/src/removeoverlap/removeoverlap.cpp +++ b/src/removeoverlap/removeoverlap.cpp @@ -67,7 +67,7 @@ void removeoverlap(GSList const *const items, double const xGap, double const yG NR::Point const curr = it->midpoint; NR::Point const dest(it->vspc_rect->getCentreX(), it->vspc_rect->getCentreY()); - sp_item_move_rel(it->item, NR::translate(dest - curr)); + sp_item_move_rel(it->item, Geom::Translate(dest - curr)); delete it->vspc_rect; } } |
