-rw-r--r-- | agg-plot/text.h | 6 |
diff --git a/agg-plot/text.h b/agg-plot/text.h index 3290f180..b90b23ff 100644 --- a/agg-plot/text.h +++ b/agg-plot/text.h @@ -38,7 +38,7 @@ namespace draw { public: text(const char* text, double size = 10.0, double width = 1.0, - double hjustif = 0.0, double vjustif = 0.0): + double hjustif = 0.0, double vjustif = 0.0): m_matrix(), m_user_matrix(), m_text_buf(text), m_text(), m_trans(m_text, m_user_matrix), m_stroke(m_trans), m_x(0.0), m_y(0.0), m_angle(0.0), @@ -89,8 +89,8 @@ namespace draw { virtual str write_svg(int id, agg::rgba8 c, double h); virtual bool render(pixel_type::lcd_fmt& ren_buf, - agg::rasterizer_scanline_aa<>& ras, - agg::scanline_p8& sl, agg::rgba8 c); + agg::rasterizer_scanline_aa<>& ras, + agg::scanline_p8& sl, agg::rgba8 c); const vs_text& self() const { return m_text; }; vs_text& self() { return m_text; }; |