summaryrefslogtreecommitdiffstats
path: root/src/sp-text.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/sp-text.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 'src/sp-text.cpp')
-rw-r--r--src/sp-text.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sp-text.cpp b/src/sp-text.cpp
index 59ced44e5..fcfb84968 100644
--- a/src/sp-text.cpp
+++ b/src/sp-text.cpp
@@ -432,7 +432,7 @@ static void sp_text_snappoints(SPItem const *item, SnapPointsIter p)
// the baseline anchor of the first char
Inkscape::Text::Layout const *layout = te_get_layout((SPItem *) item);
if(layout != NULL) {
- *p = layout->characterAnchorPoint(layout->begin()) * from_2geom(sp_item_i2d_affine(item));
+ *p = layout->characterAnchorPoint(layout->begin()) * sp_item_i2d_affine(item);
}
}