diff options
author | Tibby Lickle <tibbylickle@gmail.com> | 2011-07-06 00:46:56 +0100 |
---|---|---|
committer | Tibby Lickle <tibbylickle@gmail.com> | 2011-07-06 00:46:56 +0100 |
commit | fb4d7dd8951e3030e6e40902e5b04e46b970afbc (patch) | |
tree | eab10175de4b2359af61e48de64d5e500f684d32 /src/lib/VSDXParser.cpp | |
parent | 504b2b884c96625e3648930a55f202a92bd9521e (diff) |
Fix accidental block comment of NURBS reading
Diffstat (limited to 'src/lib/VSDXParser.cpp')
-rw-r--r-- | src/lib/VSDXParser.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/VSDXParser.cpp b/src/lib/VSDXParser.cpp index 098c9e8..0522441 100644 --- a/src/lib/VSDXParser.cpp +++ b/src/lib/VSDXParser.cpp @@ -396,7 +396,7 @@ void libvisio::VSDXParser::readArcTo(WPXInputStream *input) void libvisio::VSDXParser::readNURBSTo(WPXInputStream *input) { - /*input->seek(1, WPX_SEEK_CUR); + input->seek(1, WPX_SEEK_CUR); double x = readDouble(input); input->seek(1, WPX_SEEK_CUR); double y = readDouble(input); @@ -492,7 +492,7 @@ void libvisio::VSDXParser::readNURBSTo(WPXInputStream *input) if (valueType == 0x20) controlY = readDouble(input); else - controlY = readU16(input); + controlY = readU16(input); valueType = readU8(input); if (valueType == 0x20) @@ -523,7 +523,7 @@ void libvisio::VSDXParser::readNURBSTo(WPXInputStream *input) #endif m_geomList.addNURBSTo(m_header.id, m_header.level, x, y, xType, - yType, degree, controlPoints, knotVector, weights);*/ + yType, degree, controlPoints, knotVector, weights); } void libvisio::VSDXParser::readXFormData(WPXInputStream *input) |