summaryrefslogtreecommitdiff
path: root/src/lib/VSD11Parser.cpp
diff options
context:
space:
mode:
authorFridrich Štrba <fridrich.strba@bluewin.ch>2011-06-23 16:21:47 +0200
committerFridrich Štrba <fridrich.strba@bluewin.ch>2011-06-23 16:21:47 +0200
commit53616ed07b4725c3bb592cf1c508eb75fe1283c0 (patch)
treefdda3f46a2e62b7615489214bb009057a3603713 /src/lib/VSD11Parser.cpp
parentf4209c7ef6793b0cd76934c56333e87544b6acbb (diff)
Make the code actually compile too
Diffstat (limited to 'src/lib/VSD11Parser.cpp')
-rw-r--r--src/lib/VSD11Parser.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/VSD11Parser.cpp b/src/lib/VSD11Parser.cpp
index 872ace2..8bf1f32 100644
--- a/src/lib/VSD11Parser.cpp
+++ b/src/lib/VSD11Parser.cpp
@@ -939,8 +939,8 @@ void libvisio::VSD11Parser::_flushCurrentPath(libwpg::WPGPaintInterface *painter
if (startX == x && startY == y)
{
WPXPropertyList closedPath;
- closedPath.insert("libwpg:path-action", "Z")
- path.append(iter->second());
+ closedPath.insert("libwpg:path-action", "Z");
+ path.append(closedPath);
}
if (path.count())
painter->drawPath(path);
@@ -981,8 +981,8 @@ void libvisio::VSD11Parser::_flushCurrentPath(libwpg::WPGPaintInterface *painter
if (startX == x && startY == y)
{
WPXPropertyList closedPath;
- closedPath.insert("libwpg:path-action", "Z")
- path.append(iter2()());
+ closedPath.insert("libwpg:path-action", "Z");
+ path.append(closedPath);
}
if (path.count())
painter->drawPath(path);