plug-ins/helpbrowser/dialog.c plug-ins/imagemap/imap_browse.c

2007-06-05  Sven Neumann  <sven@gimp.org>

	* plug-ins/helpbrowser/dialog.c
	* plug-ins/imagemap/imap_browse.c
	* plug-ins/imagemap/imap_preview.c
	* plug-ins/imagemap/imap_selection.c: added const qualifiers.

svn path=/trunk/; revision=22711
This commit is contained in:
Sven Neumann 2007-06-05 14:15:50 +00:00 committed by Sven Neumann
parent fe6787a105
commit c2758fcc61
5 changed files with 18 additions and 8 deletions

View file

@ -1,3 +1,10 @@
2007-06-05 Sven Neumann <sven@gimp.org>
* plug-ins/helpbrowser/dialog.c
* plug-ins/imagemap/imap_browse.c
* plug-ins/imagemap/imap_preview.c
* plug-ins/imagemap/imap_selection.c: added const qualifiers.
2007-06-05 Michael Natterer <mitch@gimp.org>
* plug-ins/helpbrowser/dialog.[ch] (browser_dialog_goto_index):

View file

@ -168,7 +168,7 @@ static GtkWidget *button_prev = NULL;
static GtkWidget *button_next = NULL;
static GdkCursor *busy_cursor = NULL;
static GtkTargetEntry help_dnd_target_table[] =
static const GtkTargetEntry help_dnd_target_table[] =
{
{ "text/uri-list", 0, 0 },
{ "_NETSCAPE_URL", 0, 0 }

View file

@ -25,9 +25,10 @@
#include "imap_browse.h"
static GtkTargetEntry target_table[] = {
{"STRING", 0, 1 },
{"text/plain", 0, 2 }
static const GtkTargetEntry target_table[] =
{
{"STRING", 0, 1 },
{"text/plain", 0, 2 }
};
static void

View file

@ -369,8 +369,9 @@ preview_set_cursor(Preview_t *preview, GdkCursorType cursor_type)
return prev_cursor;
}
static const GtkTargetEntry target_table[] = {
{"STRING", 0, 1 },
static const GtkTargetEntry target_table[] =
{
{"STRING", 0, 1 },
{"text/plain", 0, 2 }
};

View file

@ -250,8 +250,9 @@ object_moved_cb(Object_t *obj, gpointer data)
#endif
}
static GtkTargetEntry target_table[] = {
{"STRING", 0, 1 },
static const GtkTargetEntry target_table[] =
{
{"STRING", 0, 1 },
{"text/plain", 0, 2 }
};