diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-06-23 16:21:47 +0200 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-06-23 16:21:47 +0200 |
commit | 53616ed07b4725c3bb592cf1c508eb75fe1283c0 (patch) | |
tree | fdda3f46a2e62b7615489214bb009057a3603713 /src/lib/VSD11Parser.cpp | |
parent | f4209c7ef6793b0cd76934c56333e87544b6acbb (diff) |
Make the code actually compile too
Diffstat (limited to 'src/lib/VSD11Parser.cpp')
-rw-r--r-- | src/lib/VSD11Parser.cpp | 8 |
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); |