summaryrefslogtreecommitdiff
path: root/src/lib/VSDXStylesCollector.h
diff options
context:
space:
mode:
authorFridrich Štrba <fridrich.strba@bluewin.ch>2011-09-16 11:28:30 +0200
committerFridrich Štrba <fridrich.strba@bluewin.ch>2011-09-16 11:28:30 +0200
commit4e7d1bcb60de6a6920f6cede0c84cb32b9d9eb0a (patch)
tree5c9fcec17b9139826b16e6b4ef9b84332ffab28a /src/lib/VSDXStylesCollector.h
parent85a0bb2e54df2a6be8bc21f6c5bb74a1898d40e4 (diff)
Some more integer width related stuff
Diffstat (limited to 'src/lib/VSDXStylesCollector.h')
-rw-r--r--src/lib/VSDXStylesCollector.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/VSDXStylesCollector.h b/src/lib/VSDXStylesCollector.h
index d21d713..854242f 100644
--- a/src/lib/VSDXStylesCollector.h
+++ b/src/lib/VSDXStylesCollector.h
@@ -61,12 +61,12 @@ public:
void collectMoveTo(unsigned id, unsigned level, double x, double y);
void collectLineTo(unsigned id, unsigned level, double x, double y);
void collectArcTo(unsigned id, unsigned level, double x2, double y2, double bow);
- void collectNURBSTo(unsigned id, unsigned level, double x2, double y2, unsigned xType, unsigned yType, unsigned degree, std::vector<std::pair<double, double> > controlPoints, std::vector<double> knotVector, std::vector<double> weights);
+ void collectNURBSTo(unsigned id, unsigned level, double x2, double y2, unsigned char xType, unsigned char yType, unsigned degree, std::vector<std::pair<double, double> > controlPoints, std::vector<double> knotVector, std::vector<double> weights);
void collectNURBSTo(unsigned id, unsigned level, double x2, double y2, double knot, double knotPrev, double weight, double weightPrev, unsigned dataID);
- void collectPolylineTo(unsigned id , unsigned level, double x, double y, unsigned xType, unsigned yType, std::vector<std::pair<double, double> > &points);
+ void collectPolylineTo(unsigned id , unsigned level, double x, double y, unsigned char xType, unsigned char yType, std::vector<std::pair<double, double> > &points);
void collectPolylineTo(unsigned id , unsigned level, double x, double y, unsigned dataID);
- void collectShapeData(unsigned id, unsigned level, unsigned xType, unsigned yType, unsigned degree, double lastKnot, std::vector<std::pair<double, double> > controlPoints, std::vector<double> knotVector, std::vector<double> weights);
- void collectShapeData(unsigned id, unsigned level, unsigned xType, unsigned yType, std::vector<std::pair<double, double> > points);
+ void collectShapeData(unsigned id, unsigned level, unsigned char xType, unsigned char yType, unsigned degree, double lastKnot, std::vector<std::pair<double, double> > controlPoints, std::vector<double> knotVector, std::vector<double> weights);
+ void collectShapeData(unsigned id, unsigned level, unsigned char xType, unsigned char yType, std::vector<std::pair<double, double> > points);
void collectXFormData(unsigned id, unsigned level, const XForm &xform);
void collectTxtXForm(unsigned id, unsigned level, const XForm &txtxform);
void collectShapeId(unsigned id, unsigned level, unsigned shapeId);