summaryrefslogtreecommitdiffstats
path: root/src/selection-chemistry.cpp
diff options
context:
space:
mode:
authorJoshua L. Blocher <verbalshadow@gmail.com>2008-12-05 19:56:36 +0000
committerverbalshadow <verbalshadow@users.sourceforge.net>2008-12-05 19:56:36 +0000
commit7d937fffc4337f86b3c8b641be867f22c694d151 (patch)
tree0c8b1bd5709e6b9912f6aeb3d3b81dbfb4d6ff40 /src/selection-chemistry.cpp
parentLayout code cleanup. (diff)
downloadinkscape-7d937fffc4337f86b3c8b641be867f22c694d151.tar.gz
inkscape-7d937fffc4337f86b3c8b641be867f22c694d151.zip
NR -> 2Geom, more h and cpp files
(bzr r6952)
Diffstat (limited to 'src/selection-chemistry.cpp')
-rw-r--r--src/selection-chemistry.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/selection-chemistry.cpp b/src/selection-chemistry.cpp
index bd59c0aa4..f6920c2a3 100644
--- a/src/selection-chemistry.cpp
+++ b/src/selection-chemistry.cpp
@@ -2731,7 +2731,7 @@ sp_selection_set_mask(SPDesktop *desktop, bool apply_clip_path, bool apply_to_la
SPItem *item = reinterpret_cast<SPItem *>(i->data);
// inverted object transform should be applied to a mask object,
// as mask is calculated in user space (after applying transform)
- NR::Matrix maskTransform (item->transform.inverse());
+ Geom::Matrix maskTransform (item->transform.inverse());
GSList *mask_items_dup = NULL;
for (GSList *mask_item = mask_items; NULL != mask_item; mask_item = mask_item->next) {