diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-05-26 11:07:23 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-05-26 11:07:23 +0800 |
commit | 04a042ee01dba30ba231c48ec7d172b6be1a6fca (patch) | |
tree | 080e3ad2fe16da7e3fb057e1baa0b3734a4e4d2f /widgets/misc/pixmaps | |
parent | a6c9a55391c484038a98f0326798949c52621c50 (diff) | |
download | gsoc2013-evolution-04a042ee01dba30ba231c48ec7d172b6be1a6fca.tar.gz gsoc2013-evolution-04a042ee01dba30ba231c48ec7d172b6be1a6fca.tar.zst gsoc2013-evolution-04a042ee01dba30ba231c48ec7d172b6be1a6fca.zip |
Fix compiler warnings in widgets.
Diffstat (limited to 'widgets/misc/pixmaps')
-rw-r--r-- | widgets/misc/pixmaps/cursor_cross.xpm | 2 | ||||
-rw-r--r-- | widgets/misc/pixmaps/cursor_hand_closed.xpm | 2 | ||||
-rw-r--r-- | widgets/misc/pixmaps/cursor_hand_open.xpm | 2 | ||||
-rw-r--r-- | widgets/misc/pixmaps/cursor_zoom_in.xpm | 2 | ||||
-rw-r--r-- | widgets/misc/pixmaps/cursor_zoom_out.xpm | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/widgets/misc/pixmaps/cursor_cross.xpm b/widgets/misc/pixmaps/cursor_cross.xpm index cf9d0aca33..6a865148fb 100644 --- a/widgets/misc/pixmaps/cursor_cross.xpm +++ b/widgets/misc/pixmaps/cursor_cross.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * cursor_cross_xpm[] = { +static const gchar *cursor_cross_xpm[] = { "32 32 3 1", " c None", ". c #000000", diff --git a/widgets/misc/pixmaps/cursor_hand_closed.xpm b/widgets/misc/pixmaps/cursor_hand_closed.xpm index 61a6de4b88..24450ed2a5 100644 --- a/widgets/misc/pixmaps/cursor_hand_closed.xpm +++ b/widgets/misc/pixmaps/cursor_hand_closed.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * cursor_hand_closed_xpm[] = { +static const gchar *cursor_hand_closed_xpm[] = { "32 32 3 1", " c None", ". c #000000", diff --git a/widgets/misc/pixmaps/cursor_hand_open.xpm b/widgets/misc/pixmaps/cursor_hand_open.xpm index 048acc8054..2491b18e3b 100644 --- a/widgets/misc/pixmaps/cursor_hand_open.xpm +++ b/widgets/misc/pixmaps/cursor_hand_open.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * cursor_hand_open_xpm[] = { +static const gchar *cursor_hand_open_xpm[] = { "32 32 3 1", " c None", ". c #000000", diff --git a/widgets/misc/pixmaps/cursor_zoom_in.xpm b/widgets/misc/pixmaps/cursor_zoom_in.xpm index 1caf9e3e2a..19e483fd65 100644 --- a/widgets/misc/pixmaps/cursor_zoom_in.xpm +++ b/widgets/misc/pixmaps/cursor_zoom_in.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * cursor_zoom_in_xpm[] = { +static const gchar *cursor_zoom_in_xpm[] = { "32 32 2 1", " c None", ". c #000000", diff --git a/widgets/misc/pixmaps/cursor_zoom_out.xpm b/widgets/misc/pixmaps/cursor_zoom_out.xpm index af1b698521..9748fa1143 100644 --- a/widgets/misc/pixmaps/cursor_zoom_out.xpm +++ b/widgets/misc/pixmaps/cursor_zoom_out.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * cursor_zoom_out_xpm[] = { +static const gchar *cursor_zoom_out_xpm[] = { "32 32 2 1", " c None", ". c #000000", |