plug-ins/imagemap/imap_selection.c silent the compiler.

2004-11-17  Sven Neumann  <sven@gimp.org>

	* plug-ins/imagemap/imap_selection.c
	* plug-ins/imagemap/imap_preferences.c: silent the compiler.
This commit is contained in:
Sven Neumann 2004-11-17 01:26:58 +00:00 committed by Sven Neumann
parent 9560d154e4
commit bc69560b7e
3 changed files with 12 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2004-11-17 Sven Neumann <sven@gimp.org>
* plug-ins/imagemap/imap_selection.c
* plug-ins/imagemap/imap_preferences.c: silent the compiler.
2004-11-17 Michael Natterer <mitch@gimp.org>
* plug-ins/common/jpeg.c: applied (modified) patch from S. Mukund

View file

@ -528,6 +528,7 @@ create_colors_tab(PreferencesDialog_t *data, GtkWidget *notebook)
G_CALLBACK(edit_selected_bg));
}
#ifdef _NOT_READY_YET_
static void
create_contiguous_regions_tab(PreferencesDialog_t *data, GtkWidget *notebook)
{
@ -539,6 +540,7 @@ create_contiguous_regions_tab(PreferencesDialog_t *data, GtkWidget *notebook)
data->auto_convert =
create_check_button_in_table(table, 1, 0, _("_Automatically convert"));
}
#endif
static void
switch_page(GtkWidget *widget, GtkNotebookPage *page, gint page_num,

View file

@ -287,11 +287,13 @@ static void
object_moved_cb(Object_t *obj, gpointer data)
{
Selection_t *selection = (Selection_t*) data;
gint row = object_get_position_in_list(obj);
selection->select_lock = TRUE;
#ifdef _OLD_
gtk_clist_set_row_data(GTK_CLIST(selection->list), row, (gpointer) obj);
selection_set_selected(selection, row);
{
gint row = object_get_position_in_list(obj);
gtk_clist_set_row_data(GTK_CLIST(selection->list), row, (gpointer) obj);
selection_set_selected(selection, row);
}
#endif
}