mirror of https://github.com/GNOME/gimp.git
use the proper local variable on creation, not the uninitialized one.
* app/by_color_select.c: use the proper local variable on creation, not the uninitialized one. Fixes bug #8149. -Yosh
This commit is contained in:
parent
528f9f6909
commit
5bbe56d364
|
@ -1,3 +1,8 @@
|
|||
Fri Mar 31 04:20:27 PST 2000 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* app/by_color_select.c: use the proper local variable on creation,
|
||||
not the uninitialized one. Fixes bug #8149.
|
||||
|
||||
Thu Mar 30 16:48:06 PST 2000 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* configure.in: made glib cflags extraction smarter
|
||||
|
|
|
@ -746,8 +746,8 @@ by_color_select_dialog_new (void)
|
|||
frame =
|
||||
gimp_radio_group_new2 (TRUE, _("Selection Mode"),
|
||||
gimp_radio_button_update,
|
||||
&by_color_dialog->operation,
|
||||
(gpointer) by_color_dialog->operation,
|
||||
&bcd->operation,
|
||||
(gpointer) bcd->operation,
|
||||
|
||||
_("Replace"), (gpointer) SELECTION_REPLACE, NULL,
|
||||
_("Add"), (gpointer) SELECTION_ADD, NULL,
|
||||
|
|
|
@ -746,8 +746,8 @@ by_color_select_dialog_new (void)
|
|||
frame =
|
||||
gimp_radio_group_new2 (TRUE, _("Selection Mode"),
|
||||
gimp_radio_button_update,
|
||||
&by_color_dialog->operation,
|
||||
(gpointer) by_color_dialog->operation,
|
||||
&bcd->operation,
|
||||
(gpointer) bcd->operation,
|
||||
|
||||
_("Replace"), (gpointer) SELECTION_REPLACE, NULL,
|
||||
_("Add"), (gpointer) SELECTION_ADD, NULL,
|
||||
|
|
|
@ -746,8 +746,8 @@ by_color_select_dialog_new (void)
|
|||
frame =
|
||||
gimp_radio_group_new2 (TRUE, _("Selection Mode"),
|
||||
gimp_radio_button_update,
|
||||
&by_color_dialog->operation,
|
||||
(gpointer) by_color_dialog->operation,
|
||||
&bcd->operation,
|
||||
(gpointer) bcd->operation,
|
||||
|
||||
_("Replace"), (gpointer) SELECTION_REPLACE, NULL,
|
||||
_("Add"), (gpointer) SELECTION_ADD, NULL,
|
||||
|
|
Loading…
Reference in New Issue