mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-21 06:45:39 -06:00
PainterSvg: Fixed compiling errors in MinGW
git-svn-id: svn://ultimatepp.org/upp/trunk@7352 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
462345cec7
commit
1142f1d90a
1 changed files with 3 additions and 1 deletions
|
|
@ -503,7 +503,9 @@ void SvgPaint_Text(Painter& sw, XmlParser &xp, Svg2DTransform transf, SvgStyle s
|
|||
int factor = 20; // Factor to get better resolution text
|
||||
|
||||
Font f(Font::ARIAL, 12);
|
||||
StringBuffer stext = xp.ReadText();
|
||||
String str = xp.ReadText();
|
||||
StringBuffer stext;
|
||||
stext = str;
|
||||
|
||||
int i, j;
|
||||
for (i = j = 0; i < stext.GetCount(); ++i, ++j) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue