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:

committed by
Sven Neumann

parent
fe6787a105
commit
c2758fcc61
@ -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):
|
||||
|
@ -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 }
|
||||
|
@ -25,7 +25,8 @@
|
||||
|
||||
#include "imap_browse.h"
|
||||
|
||||
static GtkTargetEntry target_table[] = {
|
||||
static const GtkTargetEntry target_table[] =
|
||||
{
|
||||
{"STRING", 0, 1 },
|
||||
{"text/plain", 0, 2 }
|
||||
};
|
||||
|
@ -369,7 +369,8 @@ preview_set_cursor(Preview_t *preview, GdkCursorType cursor_type)
|
||||
return prev_cursor;
|
||||
}
|
||||
|
||||
static const GtkTargetEntry target_table[] = {
|
||||
static const GtkTargetEntry target_table[] =
|
||||
{
|
||||
{"STRING", 0, 1 },
|
||||
{"text/plain", 0, 2 }
|
||||
};
|
||||
|
@ -250,7 +250,8 @@ object_moved_cb(Object_t *obj, gpointer data)
|
||||
#endif
|
||||
}
|
||||
|
||||
static GtkTargetEntry target_table[] = {
|
||||
static const GtkTargetEntry target_table[] =
|
||||
{
|
||||
{"STRING", 0, 1 },
|
||||
{"text/plain", 0, 2 }
|
||||
};
|
||||
|
Reference in New Issue
Block a user