diff options
| author | Markus Engel <markus.engel@tum.de> | 2013-03-30 20:49:36 +0000 |
|---|---|---|
| committer | Markus Engel <markus.engel@tum.de> | 2013-03-30 20:49:36 +0000 |
| commit | f51227a487f3d80e096c04470a969f5efa911a98 (patch) | |
| tree | df4dc96bef8d9dd3936ff0f74bdb78db8da4149e /src/sp-flowtext.cpp | |
| parent | Removed unused function definitions (diff) | |
| download | inkscape-f51227a487f3d80e096c04470a969f5efa911a98.tar.gz inkscape-f51227a487f3d80e096c04470a969f5efa911a98.zip | |
Turned all functions concerning SPRect into member functions.
(bzr r11608.1.60)
Diffstat (limited to 'src/sp-flowtext.cpp')
| -rw-r--r-- | src/sp-flowtext.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sp-flowtext.cpp b/src/sp-flowtext.cpp index 89b718781..6496d017d 100644 --- a/src/sp-flowtext.cpp +++ b/src/sp-flowtext.cpp @@ -649,7 +649,7 @@ SPItem *create_flowtext_with_internal_frame (SPDesktop *desktop, Geom::Point p0, Geom::Coord const w = x1 - x0; Geom::Coord const h = y1 - y0; - sp_rect_position_set(rect, x0, y0, w, h); + rect->setPosition(x0, y0, w, h); rect->updateRepr(); Inkscape::XML::Node *para_repr = xml_doc->createElement("svg:flowPara"); |
