From 235e0557710fbd010aeb0db31ab719cc142885ae Mon Sep 17 00:00:00 2001 From: Kris De Gussem Date: Sat, 25 Feb 2012 07:48:54 +0100 Subject: (cppcheck and janitorial tasks:) C-style casting to C++-style casting (bzr r11011) --- src/sp-text.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/sp-text.cpp') diff --git a/src/sp-text.cpp b/src/sp-text.cpp index 21c380477..f930bb636 100644 --- a/src/sp-text.cpp +++ b/src/sp-text.cpp @@ -702,7 +702,7 @@ void TextTagAttributes::writeSingleAttribute(Inkscape::XML::Node *node, gchar co gchar single_value_string[32]; // FIXME: this has no concept of unset values because sp_svg_length_list_read() can't read them back in - for (std::vector::const_iterator it = attr_vector.begin() ; it != attr_vector.end() ; it++) { + for (std::vector::const_iterator it = attr_vector.begin() ; it != attr_vector.end() ; ++it) { g_ascii_formatd(single_value_string, sizeof (single_value_string), "%.8g", it->computed); if (!string.empty()) string += ' '; string += single_value_string; -- cgit v1.2.3