gimp r25479 - in trunk: . app/display app/gui



Author: neo
Date: Mon Apr 14 08:39:23 2008
New Revision: 25479
URL: http://svn.gnome.org/viewvc/gimp?rev=25479&view=rev

Log:
2008-04-14  Sven Neumann  <sven gimp org>

	* 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.



Modified:
   trunk/ChangeLog
   trunk/app/display/gimpdisplayshell.c
   trunk/app/display/gimpstatusbar.c
   trunk/app/gui/gui.c

Modified: trunk/app/display/gimpdisplayshell.c
==============================================================================
--- trunk/app/display/gimpdisplayshell.c	(original)
+++ trunk/app/display/gimpdisplayshell.c	Mon Apr 14 08:39:23 2008
@@ -690,7 +690,7 @@
                                  GimpDisplayShell *shell)
 {
   gimp_statusbar_push (GIMP_STATUSBAR (shell->statusbar), "menu-tooltip",
-                       "%s", tooltip);
+                       NULL, "%s", tooltip);
 }
 
 static void

Modified: trunk/app/display/gimpstatusbar.c
==============================================================================
--- trunk/app/display/gimpstatusbar.c	(original)
+++ trunk/app/display/gimpstatusbar.c	Mon Apr 14 08:39:23 2008
@@ -326,7 +326,7 @@
       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);
 

Modified: trunk/app/gui/gui.c
==============================================================================
--- trunk/app/gui/gui.c	(original)
+++ trunk/app/gui/gui.c	Mon Apr 14 08:39:23 2008
@@ -696,7 +696,7 @@
       GimpDisplayShell *shell = GIMP_DISPLAY_SHELL (display->shell);
 
       gimp_statusbar_push (GIMP_STATUSBAR (shell->statusbar), "menu-tooltip",
-                           "%s", tooltip);
+                           NULL, "%s", tooltip);
     }
 }
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]