From 720592c468782935eec3c99822ecf2e31beb3b63 Mon Sep 17 00:00:00 2001 From: tweenk Date: Mon, 13 Apr 2009 23:43:33 +0000 Subject: [PATCH] Fix two legacy icon IDs --- src/ui/dialog/document-properties.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/ui/dialog/document-properties.cpp b/src/ui/dialog/document-properties.cpp index 6b3e23579..5c9d0cb48 100644 --- a/src/ui/dialog/document-properties.cpp +++ b/src/ui/dialog/document-properties.cpp @@ -55,9 +55,6 @@ namespace Dialog { #define SPACE_SIZE_X 15 #define SPACE_SIZE_Y 10 -#define INKSCAPE_ICON_GRID_XY "grid_xy" -#define INKSCAPE_ICON_GRID_AXONOM "grid_axonom" - //=================================================== @@ -701,10 +698,10 @@ DocumentProperties::update_gridspage() const char *icon = NULL; switch (grid->getGridType()) { case GRID_RECTANGULAR: - icon = INKSCAPE_ICON_GRID_XY; + icon = "grid-rectangular"; break; case GRID_AXONOMETRIC: - icon = INKSCAPE_ICON_GRID_AXONOM; + icon = "grid-axonometric"; break; default: break; -- 2.30.2