From 12f9afe65be1ec5083cf4e156f3455f38dd9601a Mon Sep 17 00:00:00 2001 From: "Jon A. Cruz" Date: Sun, 12 Dec 2010 11:55:36 -0800 Subject: Fixed const/non-const mismatch loop. (bzr r9949) --- src/xml/repr-util.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/xml/repr-util.cpp b/src/xml/repr-util.cpp index 07a25ca6d..9405cde01 100644 --- a/src/xml/repr-util.cpp +++ b/src/xml/repr-util.cpp @@ -456,7 +456,7 @@ Inkscape::XML::Node const *sp_repr_lookup_name( Inkscape::XML::Node const *repr, Inkscape::XML::Node *sp_repr_lookup_name( Inkscape::XML::Node *repr, gchar const *name, gint maxdepth ) { - Inkscape::XML::Node const *found = sp_repr_lookup_name( const_cast(repr), name, maxdepth ); + Inkscape::XML::Node const *found = sp_repr_lookup_name( const_cast(repr), name, maxdepth ); return const_cast(found); } -- cgit v1.2.3