Code

replace nr_new() with g_new(), and try to converge on using the glib allocator a...
[inkscape.git] / src / extension / internal / gnome.cpp
index 6c6563e7ebd0f5ead2921cfc0214403e78c043c6..4bdec5f9818c59a05c0342a458c82706455d2bf6 100644 (file)
@@ -423,7 +423,7 @@ nr_artpath_to_art_bpath(NArtBpath const *s)
        i = 0;
        while (s[i].code != NR_END) i += 1;
 
-       ArtBpath* d = nr_new (ArtBpath, i + 1);
+       ArtBpath* d = g_new (ArtBpath, i + 1);
 
        i = 0;
        while (s[i].code != NR_END) {