mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-28 19:51:58 +01:00
make PDF build with VS2008
This commit is contained in:
@@ -55,10 +55,10 @@ public:
|
||||
|
||||
private:
|
||||
std::string _content;
|
||||
Alignment _align = ALIGN_LEFT;
|
||||
int _style = STYLE_PLAIN;
|
||||
std::string _fontName = "Helvetica";
|
||||
int _fontSize = 10;
|
||||
Alignment _align;
|
||||
int _style;
|
||||
std::string _fontName;
|
||||
int _fontSize;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@@ -58,13 +58,13 @@ public:
|
||||
void draw(Page& page, float x, float y, float width, float height);
|
||||
|
||||
private:
|
||||
AttributedString _content = "";
|
||||
std::string _name = "";
|
||||
unsigned _outline = OUTLINE_NONE;
|
||||
float _lineWidth = 1.0f;
|
||||
AttributedString _content;
|
||||
std::string _name;
|
||||
unsigned _outline;
|
||||
float _lineWidth;
|
||||
FontMapPtr _pFontMap;
|
||||
std::string _encoding = "UTF-8";
|
||||
bool _trueType = true;
|
||||
std::string _encoding;
|
||||
bool _trueType;
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user