diff options
author | Matthew Barnes <mbarnes@src.gnome.org> | 2009-01-26 01:36:30 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2009-01-26 01:36:30 +0800 |
commit | 8bfadde575e8a49da66bf7ba17e89963aa84bbf5 (patch) | |
tree | a3ca340144c61b24931eafc971511eb4ddca98fb /shell/e-shell-taskbar.c | |
parent | 04024bf52cf11bffb2272e449055a2bd389bd59f (diff) | |
download | gsoc2013-evolution-8bfadde575e8a49da66bf7ba17e89963aa84bbf5.tar.gz gsoc2013-evolution-8bfadde575e8a49da66bf7ba17e89963aa84bbf5.tar.zst gsoc2013-evolution-8bfadde575e8a49da66bf7ba17e89963aa84bbf5.zip |
Fix more runtime warnings.
svn path=/branches/kill-bonobo/; revision=37132
Diffstat (limited to 'shell/e-shell-taskbar.c')
-rw-r--r-- | shell/e-shell-taskbar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/e-shell-taskbar.c b/shell/e-shell-taskbar.c index 9d1ef40ef7..9b9978d65e 100644 --- a/shell/e-shell-taskbar.c +++ b/shell/e-shell-taskbar.c @@ -293,7 +293,7 @@ shell_taskbar_init (EShellTaskbar *shell_taskbar) * The true value is probably buried in a style property. */ gtk_icon_size_lookup (GTK_ICON_SIZE_MENU, NULL, &height); gtk_widget_set_size_request ( - GTK_WIDGET (shell_taskbar), -1, (height * 2) + 6); + GTK_WIDGET (shell_taskbar), -1, (height * 2)); } GType |