From 2d08a9d98d19a0581eeae687bb0322dc98806d40 Mon Sep 17 00:00:00 2001 From: MenTaLguY Date: Sun, 28 May 2006 19:51:13 +0000 Subject: replace nr_new() with g_new(), and try to converge on using the glib allocator a little more instead of the others (aside from libgc) (bzr r1044) --- src/dialogs/stroke-style.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/dialogs/stroke-style.cpp') diff --git a/src/dialogs/stroke-style.cpp b/src/dialogs/stroke-style.cpp index 5fefb8aa9..8f345d837 100644 --- a/src/dialogs/stroke-style.cpp +++ b/src/dialogs/stroke-style.cpp @@ -23,6 +23,7 @@ +#include #include #include @@ -590,7 +591,7 @@ sp_marker_prev_new(unsigned size, gchar const *mname, ua.y1 = MIN(ibox.y1, area.y1); /* Set up pixblock */ - guchar *px = nr_new(guchar, 4 * size * size); + guchar *px = g_new(guchar, 4 * size * size); memset(px, 0x00, 4 * size * size); /* Render */ @@ -609,7 +610,7 @@ sp_marker_prev_new(unsigned size, gchar const *mname, GDK_COLORSPACE_RGB, TRUE, 8, size, size, size * 4, - (GdkPixbufDestroyNotify)nr_free, + (GdkPixbufDestroyNotify)g_free, NULL)); return pb; } -- cgit v1.2.3