summaryrefslogtreecommitdiff
path: root/gtk/gtktoolshell.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2008-08-30 21:49:58 +0000
committerMatthew Barnes <mbarnes@src.gnome.org>2008-08-30 21:49:58 +0000
commit0b3c056cb7cc6892f991f55d064db74e800583e2 (patch)
tree4e37dce917cec646e8d69cb0d527c1d4d80cfc20 /gtk/gtktoolshell.c
parent1bcfe903801ad2598b04e130a3cba248d26e09ff (diff)
downloadgtk+-0b3c056cb7cc6892f991f55d064db74e800583e2.tar.gz
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
Diffstat (limited to 'gtk/gtktoolshell.c')
-rw-r--r--gtk/gtktoolshell.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtktoolshell.c b/gtk/gtktoolshell.c
index 248e634dd6..90b3842eab 100644
--- a/gtk/gtktoolshell.c
+++ b/gtk/gtktoolshell.c
@@ -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;
}