mirror of https://github.com/GNOME/gimp.git
gimp_editor_add_action_button() takes a va_list, terminate it with NULL.
2004-05-27 Michael Natterer <mitch@gimp.org> * app/widgets/gimpdocumentview.c (gimp_document_view_new): gimp_editor_add_action_button() takes a va_list, terminate it with NULL. Fixes bug #143258.
This commit is contained in:
parent
f7a043d41b
commit
fe64a83dab
|
@ -1,3 +1,9 @@
|
|||
2004-05-27 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* app/widgets/gimpdocumentview.c (gimp_document_view_new):
|
||||
gimp_editor_add_action_button() takes a va_list, terminate
|
||||
it with NULL. Fixes bug #143258.
|
||||
|
||||
2004-05-26 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* app/paint/gimpink.c: restored old time/speed sensitivity
|
||||
|
|
|
@ -152,7 +152,7 @@ gimp_document_view_new (GimpViewType view_type,
|
|||
|
||||
document_view->remove_button =
|
||||
gimp_editor_add_action_button (GIMP_EDITOR (editor->view), "documents",
|
||||
"documents-remove");
|
||||
"documents-remove", NULL);
|
||||
gimp_container_view_enable_dnd (editor->view,
|
||||
GTK_BUTTON (document_view->remove_button),
|
||||
GIMP_TYPE_IMAGEFILE);
|
||||
|
|
Loading…
Reference in New Issue