summaryrefslogtreecommitdiffstats
path: root/src/extension/internal/wmf-print.cpp
diff options
context:
space:
mode:
authorTomasz Boczkowski <penginsbacon@gmail.com>2015-05-03 10:37:06 +0000
committerTomasz Boczkowski <penginsbacon@gmail.com>2015-05-03 10:37:06 +0000
commit705243e1266aec7527ae76065213ca7536ed7c41 (patch)
treec4b029fd281bfc4ec433d2d56d77502e16fa1f28 /src/extension/internal/wmf-print.cpp
parentReformatted SPPattern (diff)
downloadinkscape-705243e1266aec7527ae76065213ca7536ed7c41.tar.gz
inkscape-705243e1266aec7527ae76065213ca7536ed7c41.zip
renamed SPPattern methods to match coding style
(bzr r14059.1.20)
Diffstat (limited to 'src/extension/internal/wmf-print.cpp')
-rw-r--r--src/extension/internal/wmf-print.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/extension/internal/wmf-print.cpp b/src/extension/internal/wmf-print.cpp
index 4894b6740..768909173 100644
--- a/src/extension/internal/wmf-print.cpp
+++ b/src/extension/internal/wmf-print.cpp
@@ -380,8 +380,8 @@ int PrintWmf::create_brush(SPStyle const *style, U_COLORREF *fcolor)
} else if (SP_IS_PATTERN(SP_STYLE_FILL_SERVER(style))) { // must be paint-server
SPPaintServer *paintserver = style->fill.value.href->getObject();
SPPattern *pat = SP_PATTERN(paintserver);
- double dwidth = pat->get_width();
- double dheight = pat->get_height();
+ double dwidth = pat->width();
+ double dheight = pat->height();
width = dwidth;
height = dheight;
brush_classify(pat, 0, &pixbuf, &hatchType, &hatchColor, &bkColor);