From: <pst...@us...> - 2008-04-03 03:42:48
|
Revision: 388 http://jazzplusplus.svn.sourceforge.net/jazzplusplus/?rev=388&view=rev Author: pstieber Date: 2008-04-02 20:42:46 -0700 (Wed, 02 Apr 2008) Log Message: ----------- Changed static char* to static const char*. Modified Paths: -------------- trunk/jazz/src/Bitmaps/JazzLogo.xpm trunk/jazz/src/Bitmaps/accept.xpm trunk/jazz/src/Bitmaps/alea.xpm trunk/jazz/src/Bitmaps/analyze.xpm trunk/jazz/src/Bitmaps/cancel.xpm trunk/jazz/src/Bitmaps/cut.xpm trunk/jazz/src/Bitmaps/cutpaste.xpm trunk/jazz/src/Bitmaps/delchord.xpm trunk/jazz/src/Bitmaps/delete.xpm trunk/jazz/src/Bitmaps/dialog.xpm trunk/jazz/src/Bitmaps/evnts.xpm trunk/jazz/src/Bitmaps/harscale.xpm trunk/jazz/src/Bitmaps/haunsch.xpm trunk/jazz/src/Bitmaps/help.xpm trunk/jazz/src/Bitmaps/ionscale.xpm trunk/jazz/src/Bitmaps/length.xpm trunk/jazz/src/Bitmaps/majscale.xpm trunk/jazz/src/Bitmaps/melscale.xpm trunk/jazz/src/Bitmaps/metro.xpm trunk/jazz/src/Bitmaps/mixer.xpm trunk/jazz/src/Bitmaps/new.xpm trunk/jazz/src/Bitmaps/note16.xpm trunk/jazz/src/Bitmaps/note163.xpm trunk/jazz/src/Bitmaps/note8.xpm trunk/jazz/src/Bitmaps/note83.xpm trunk/jazz/src/Bitmaps/open.xpm trunk/jazz/src/Bitmaps/panic.xpm trunk/jazz/src/Bitmaps/piano.xpm trunk/jazz/src/Bitmaps/pianowin.xpm trunk/jazz/src/Bitmaps/play.xpm trunk/jazz/src/Bitmaps/playloop.xpm trunk/jazz/src/Bitmaps/quantize.xpm trunk/jazz/src/Bitmaps/record.xpm trunk/jazz/src/Bitmaps/redo.xpm trunk/jazz/src/Bitmaps/repl.xpm trunk/jazz/src/Bitmaps/rrgadd.xpm trunk/jazz/src/Bitmaps/rrgdel.xpm trunk/jazz/src/Bitmaps/rrgdown.xpm trunk/jazz/src/Bitmaps/rrggen.xpm trunk/jazz/src/Bitmaps/rrgup.xpm trunk/jazz/src/Bitmaps/same0.xpm trunk/jazz/src/Bitmaps/same1.xpm trunk/jazz/src/Bitmaps/same2.xpm trunk/jazz/src/Bitmaps/same3.xpm trunk/jazz/src/Bitmaps/same4.xpm trunk/jazz/src/Bitmaps/sameb.xpm trunk/jazz/src/Bitmaps/sameh.xpm trunk/jazz/src/Bitmaps/save.xpm trunk/jazz/src/Bitmaps/select.xpm trunk/jazz/src/Bitmaps/shiftl.xpm trunk/jazz/src/Bitmaps/shiftr.xpm trunk/jazz/src/Bitmaps/std251.xpm trunk/jazz/src/Bitmaps/transpos.xpm trunk/jazz/src/Bitmaps/tritone.xpm trunk/jazz/src/Bitmaps/undo.xpm trunk/jazz/src/Bitmaps/zoomin.xpm trunk/jazz/src/Bitmaps/zoomout.xpm Modified: trunk/jazz/src/Bitmaps/JazzLogo.xpm =================================================================== --- trunk/jazz/src/Bitmaps/JazzLogo.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/JazzLogo.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char* JazzLogo_xpm[] = { +static const char* JazzLogo_xpm[] = { /* width height ncolors chars_per_pixel */ "450 67 127 2", /* colors */ Modified: trunk/jazz/src/Bitmaps/accept.xpm =================================================================== --- trunk/jazz/src/Bitmaps/accept.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/accept.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *accept_xpm[] = { +static const char *accept_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 6 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/alea.xpm =================================================================== --- trunk/jazz/src/Bitmaps/alea.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/alea.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *alea_xpm[] = { +static const char *alea_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 4 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/analyze.xpm =================================================================== --- trunk/jazz/src/Bitmaps/analyze.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/analyze.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *analyze_xpm[] = { +static const char *analyze_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 5 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/cancel.xpm =================================================================== --- trunk/jazz/src/Bitmaps/cancel.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/cancel.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *cancel_xpm[] = { +static const char *cancel_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 5 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/cut.xpm =================================================================== --- trunk/jazz/src/Bitmaps/cut.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/cut.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *cut_xpm[] = { +static const char *cut_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 4 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/cutpaste.xpm =================================================================== --- trunk/jazz/src/Bitmaps/cutpaste.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/cutpaste.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *cutpaste_xpm[] = { +static const char *cutpaste_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 5 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/delchord.xpm =================================================================== --- trunk/jazz/src/Bitmaps/delchord.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/delchord.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *delchord_xpm[] = { +static const char *delchord_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 5 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/delete.xpm =================================================================== --- trunk/jazz/src/Bitmaps/delete.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/delete.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *delete_xpm[] = { +static const char *delete_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 4 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/dialog.xpm =================================================================== --- trunk/jazz/src/Bitmaps/dialog.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/dialog.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *dialog_xpm[] = { +static const char *dialog_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 4 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/evnts.xpm =================================================================== --- trunk/jazz/src/Bitmaps/evnts.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/evnts.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *evnts_xpm[] = { +static const char *evnts_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 4 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/harscale.xpm =================================================================== --- trunk/jazz/src/Bitmaps/harscale.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/harscale.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *harscale_xpm[] = { +static const char *harscale_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 4 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/haunsch.xpm =================================================================== --- trunk/jazz/src/Bitmaps/haunsch.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/haunsch.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *haunsch_xpm[] = { +static const char *haunsch_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 4 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/help.xpm =================================================================== --- trunk/jazz/src/Bitmaps/help.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/help.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *help_xpm[] = { +static const char *help_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 5 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/ionscale.xpm =================================================================== --- trunk/jazz/src/Bitmaps/ionscale.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/ionscale.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *ionscale_xpm[] = { +static const char *ionscale_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 4 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/length.xpm =================================================================== --- trunk/jazz/src/Bitmaps/length.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/length.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *length_xpm[] = { +static const char *length_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 4 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/majscale.xpm =================================================================== --- trunk/jazz/src/Bitmaps/majscale.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/majscale.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *majscale_xpm[] = { +static const char *majscale_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 4 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/melscale.xpm =================================================================== --- trunk/jazz/src/Bitmaps/melscale.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/melscale.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *melscale_xpm[] = { +static const char *melscale_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 4 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/metro.xpm =================================================================== --- trunk/jazz/src/Bitmaps/metro.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/metro.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *metro_xpm[] = { +static const char *metro_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 5 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/mixer.xpm =================================================================== --- trunk/jazz/src/Bitmaps/mixer.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/mixer.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *mixer_xpm[] = { +static const char *mixer_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 4 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/new.xpm =================================================================== --- trunk/jazz/src/Bitmaps/new.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/new.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *new_xpm[] = { +static const char *new_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 4 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/note16.xpm =================================================================== --- trunk/jazz/src/Bitmaps/note16.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/note16.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *note16_xpm[] = { +static const char *note16_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 4 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/note163.xpm =================================================================== --- trunk/jazz/src/Bitmaps/note163.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/note163.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *note163_xpm[] = { +static const char *note163_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 4 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/note8.xpm =================================================================== --- trunk/jazz/src/Bitmaps/note8.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/note8.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *note8_xpm[] = { +static const char *note8_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 4 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/note83.xpm =================================================================== --- trunk/jazz/src/Bitmaps/note83.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/note83.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *note83_xpm[] = { +static const char *note83_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 4 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/open.xpm =================================================================== --- trunk/jazz/src/Bitmaps/open.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/open.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *open_xpm[] = { +static const char *open_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 6 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/panic.xpm =================================================================== --- trunk/jazz/src/Bitmaps/panic.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/panic.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *panic_xpm[] = { +static const char *panic_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 7 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/piano.xpm =================================================================== --- trunk/jazz/src/Bitmaps/piano.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/piano.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *piano_xpm[] = { +static const char *piano_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 4 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/pianowin.xpm =================================================================== --- trunk/jazz/src/Bitmaps/pianowin.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/pianowin.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *pianowin_xpm[] = { +static const char *pianowin_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 4 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/play.xpm =================================================================== --- trunk/jazz/src/Bitmaps/play.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/play.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *play_xpm[] = { +static const char *play_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 4 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/playloop.xpm =================================================================== --- trunk/jazz/src/Bitmaps/playloop.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/playloop.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *playloop_xpm[] = { +static const char *playloop_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 5 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/quantize.xpm =================================================================== --- trunk/jazz/src/Bitmaps/quantize.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/quantize.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *quantize_xpm[] = { +static const char *quantize_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 4 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/record.xpm =================================================================== --- trunk/jazz/src/Bitmaps/record.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/record.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *record_xpm[] = { +static const char *record_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 5 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/redo.xpm =================================================================== --- trunk/jazz/src/Bitmaps/redo.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/redo.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *redo_xpm[] = { +static const char *redo_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 5 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/repl.xpm =================================================================== --- trunk/jazz/src/Bitmaps/repl.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/repl.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *repl_xpm[] = { +static const char *repl_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 4 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/rrgadd.xpm =================================================================== --- trunk/jazz/src/Bitmaps/rrgadd.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/rrgadd.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *rrgadd_xpm[] = { +static const char *rrgadd_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 5 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/rrgdel.xpm =================================================================== --- trunk/jazz/src/Bitmaps/rrgdel.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/rrgdel.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *rrgdel_xpm[] = { +static const char *rrgdel_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 5 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/rrgdown.xpm =================================================================== --- trunk/jazz/src/Bitmaps/rrgdown.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/rrgdown.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *rrgdown_xpm[] = { +static const char *rrgdown_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 4 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/rrggen.xpm =================================================================== --- trunk/jazz/src/Bitmaps/rrggen.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/rrggen.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *rrggen_xpm[] = { +static const char *rrggen_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 5 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/rrgup.xpm =================================================================== --- trunk/jazz/src/Bitmaps/rrgup.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/rrgup.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *rrgup_xpm[] = { +static const char *rrgup_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 4 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/same0.xpm =================================================================== --- trunk/jazz/src/Bitmaps/same0.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/same0.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *same0_xpm[] = { +static const char *same0_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 4 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/same1.xpm =================================================================== --- trunk/jazz/src/Bitmaps/same1.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/same1.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *same1_xpm[] = { +static const char *same1_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 4 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/same2.xpm =================================================================== --- trunk/jazz/src/Bitmaps/same2.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/same2.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *same2_xpm[] = { +static const char *same2_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 4 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/same3.xpm =================================================================== --- trunk/jazz/src/Bitmaps/same3.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/same3.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *same3_xpm[] = { +static const char *same3_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 4 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/same4.xpm =================================================================== --- trunk/jazz/src/Bitmaps/same4.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/same4.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *same4_xpm[] = { +static const char *same4_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 4 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/sameb.xpm =================================================================== --- trunk/jazz/src/Bitmaps/sameb.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/sameb.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *sameb_xpm[] = { +static const char *sameb_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 4 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/sameh.xpm =================================================================== --- trunk/jazz/src/Bitmaps/sameh.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/sameh.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *sameh_xpm[] = { +static const char *sameh_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 4 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/save.xpm =================================================================== --- trunk/jazz/src/Bitmaps/save.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/save.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *save_xpm[] = { +static const char *save_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 6 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/select.xpm =================================================================== --- trunk/jazz/src/Bitmaps/select.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/select.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *select_xpm[] = { +static const char *select_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 4 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/shiftl.xpm =================================================================== --- trunk/jazz/src/Bitmaps/shiftl.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/shiftl.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *shiftl_xpm[] = { +static const char *shiftl_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 5 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/shiftr.xpm =================================================================== --- trunk/jazz/src/Bitmaps/shiftr.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/shiftr.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *shiftr_xpm[] = { +static const char *shiftr_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 5 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/std251.xpm =================================================================== --- trunk/jazz/src/Bitmaps/std251.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/std251.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *std251_xpm[] = { +static const char *std251_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 4 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/transpos.xpm =================================================================== --- trunk/jazz/src/Bitmaps/transpos.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/transpos.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *transpos_xpm[] = { +static const char *transpos_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 5 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/tritone.xpm =================================================================== --- trunk/jazz/src/Bitmaps/tritone.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/tritone.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *tritone_xpm[] = { +static const char *tritone_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 4 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/undo.xpm =================================================================== --- trunk/jazz/src/Bitmaps/undo.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/undo.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *undo_xpm[] = { +static const char *undo_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 5 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/zoomin.xpm =================================================================== --- trunk/jazz/src/Bitmaps/zoomin.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/zoomin.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *zoomin_xpm[] = { +static const char *zoomin_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 5 1", /* colors */ Modified: trunk/jazz/src/Bitmaps/zoomout.xpm =================================================================== --- trunk/jazz/src/Bitmaps/zoomout.xpm 2008-04-02 13:46:04 UTC (rev 387) +++ trunk/jazz/src/Bitmaps/zoomout.xpm 2008-04-03 03:42:46 UTC (rev 388) @@ -1,5 +1,5 @@ /* XPM */ -static char *zoomout_xpm[] = { +static const char *zoomout_xpm[] = { /* width height ncolors chars_per_pixel */ "20 19 5 1", /* colors */ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |