diff --git a/ChangeLog b/ChangeLog index eb31d9de1b..5b60f1030a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-04-14 Sven Neumann + + * app/display/gimpdisplayshell.c (gimp_display_shell_show_tooltip) + * app/display/gimpstatusbar.c (gimp_statusbar_progress_start) + * app/gui/gui.c (gui_menu_show_tooltip): push a NULL stock-id. + 2008-04-14 Sven Neumann * app/display/gimpstatusbar.c (gimp_statusbar_label_expose): added diff --git a/app/display/gimpdisplayshell.c b/app/display/gimpdisplayshell.c index 4617228756..7454aa8049 100644 --- a/app/display/gimpdisplayshell.c +++ b/app/display/gimpdisplayshell.c @@ -690,7 +690,7 @@ gimp_display_shell_show_tooltip (GimpUIManager *manager, GimpDisplayShell *shell) { gimp_statusbar_push (GIMP_STATUSBAR (shell->statusbar), "menu-tooltip", - "%s", tooltip); + NULL, "%s", tooltip); } static void diff --git a/app/display/gimpstatusbar.c b/app/display/gimpstatusbar.c index 4628631e92..37569ead54 100644 --- a/app/display/gimpstatusbar.c +++ b/app/display/gimpstatusbar.c @@ -326,7 +326,7 @@ gimp_statusbar_progress_start (GimpProgress *progress, statusbar->progress_active = TRUE; statusbar->progress_value = 0.0; - gimp_statusbar_push (statusbar, "progress", "%s", message); + gimp_statusbar_push (statusbar, "progress", NULL, "%s", message); gtk_progress_bar_set_fraction (GTK_PROGRESS_BAR (bar), 0.0); gtk_widget_set_sensitive (statusbar->cancel_button, cancelable); diff --git a/app/gui/gui.c b/app/gui/gui.c index 1ab0986ccb..4c462cfc37 100644 --- a/app/gui/gui.c +++ b/app/gui/gui.c @@ -696,7 +696,7 @@ gui_menu_show_tooltip (GimpUIManager *manager, GimpDisplayShell *shell = GIMP_DISPLAY_SHELL (display->shell); gimp_statusbar_push (GIMP_STATUSBAR (shell->statusbar), "menu-tooltip", - "%s", tooltip); + NULL, "%s", tooltip); } }