Bug 549943 – gtk_tool_shell_get_relief_style() always returns

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
This commit is contained in:
Matthew Barnes 2008-08-30 21:49:58 +00:00 committed by Matthew Barnes
parent 1bcfe90380
commit 0b3c056cb7
2 changed files with 9 additions and 1 deletions

View File

@ -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

View 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;
}