diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-06-10 15:34:44 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-06-10 17:53:02 +0100 |
commit | b04e1e79e64cb7bb3106fd08a019c27b09bdd5c6 (patch) | |
tree | 4e692bdb31e889df82c967a7a1731401816a6678 /include | |
parent | 6cca91f7ada91701443225061a5dd0ae81a98b8e (diff) |
Prop_pSegmentInfo is totally misunderstood apparently
digging into the crash on export of kde216114-1.odt
reveals various horrors
Change-Id: I0d24fe303d561a00a08098b306d10fd8273af928
Diffstat (limited to 'include')
-rw-r--r-- | include/filter/msfilter/escherex.hxx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/filter/msfilter/escherex.hxx b/include/filter/msfilter/escherex.hxx index 8c1fbbe7c6a8..a9f0fc8a9a2d 100644 --- a/include/filter/msfilter/escherex.hxx +++ b/include/filter/msfilter/escherex.hxx @@ -424,6 +424,18 @@ enum ESCHER_LineCap ESCHER_LineEndCapFlat // Line ends at end point }; +enum MSOPATHTYPE +{ + msopathLineTo, // Draw a straight line (one point) + msopathCurveTo, // Draw a cubic Bezier curve (three points) + msopathMoveTo, // Move to a new point (one point) + msopathClose, // Close a sub - path (no points) + msopathEnd, // End a path (no points) + msopathEscape, // Escape code + msopathClientEscape, // Escape code interpreted by the client + msopathInvalid // Invalid - should never be found +}; + // Shape Properties // 1pt = 12700 EMU (English Metric Units) // 1pt = 20 Twip = 20/1440" = 1/72" |