summaryrefslogtreecommitdiffstats
path: root/src/sp-cursor.h
diff options
context:
space:
mode:
authorPeter Moulder <peter.moulder@monash.edu>2007-09-16 14:42:04 +0000
committerpjrm <pjrm@users.sourceforge.net>2007-09-16 14:42:04 +0000
commit93174a1f0cc664abab4becd6a74326eb1ee14bd7 (patch)
tree3e47a0c51824fc201c9791eff1dbf547125120be /src/sp-cursor.h
parenttrivial: Address some g++-4.2 writable-strings warnings. (diff)
downloadinkscape-93174a1f0cc664abab4becd6a74326eb1ee14bd7.tar.gz
inkscape-93174a1f0cc664abab4becd6a74326eb1ee14bd7.zip
(struct SPEventContext, sp-cursor.*): Change xpm arguments from gchar** to gchar const *const *.
(bzr r3760)
Diffstat (limited to 'src/sp-cursor.h')
-rw-r--r--src/sp-cursor.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sp-cursor.h b/src/sp-cursor.h
index 36468aae8..1c40bdc44 100644
--- a/src/sp-cursor.h
+++ b/src/sp-cursor.h
@@ -3,8 +3,8 @@
#include <gdk/gdk.h>
-void sp_cursor_bitmap_and_mask_from_xpm(GdkBitmap **bitmap, GdkBitmap **mask, gchar **xpm);
-GdkCursor *sp_cursor_new_from_xpm(gchar **xpm, gint hot_x, gint hot_y);
+void sp_cursor_bitmap_and_mask_from_xpm(GdkBitmap **bitmap, GdkBitmap **mask, gchar const *const *xpm);
+GdkCursor *sp_cursor_new_from_xpm(gchar const *const *xpm, gint hot_x, gint hot_y);
#endif