]> Pileus Git - ~andy/gtk/commitdiff
Bug 549943 – gtk_tool_shell_get_relief_style() always returns
authorMatthew Barnes <mbarnes@redhat.com>
Sat, 30 Aug 2008 21:49:58 +0000 (21:49 +0000)
committerMatthew Barnes <mbarnes@src.gnome.org>
Sat, 30 Aug 2008 21:49:58 +0000 (21:49 +0000)
2008-08-30  Matthew Barnes  <mbarnes@redhat.com>

Bug 549943 – gtk_tool_shell_get_relief_style() always returns
GTK_RELIEF_NONE

* gtk/gtktoolshell.c (gtk_tool_shell_get_relief_style): Return
the correct relief style.

svn path=/trunk/; revision=21252

ChangeLog
gtk/gtktoolshell.c

index 77ae1fda0609010b8bcc75d1187e49e68d3aa5a7..9133e6985302cc06c2b92d4333274735abf4acb9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2008-08-30  Matthew Barnes  <mbarnes@redhat.com>
+
+       Bug 549943 – gtk_tool_shell_get_relief_style() always returns
+       GTK_RELIEF_NONE
+
+       * gtk/gtktoolshell.c (gtk_tool_shell_get_relief_style): Return
+       the correct relief style.
+
 2008-08-29  Björn Lindqvist  <bjourne@gmail.com>
 
        Bug 437791 – Animation is played at the wrong speed
index 248e634dd621724186261bda1416a744c157b564..90b3842eabce629761a7bbc78067ebaf0fe0171d 100644 (file)
@@ -128,7 +128,7 @@ gtk_tool_shell_get_relief_style (GtkToolShell *shell)
   GtkToolShellIface *iface = GTK_TOOL_SHELL_GET_IFACE (shell);
 
   if (iface->get_relief_style)
-    iface->get_relief_style (shell);
+    return iface->get_relief_style (shell);
 
   return GTK_RELIEF_NONE;
 }