diff options
author | Matthew Barnes <mbarnes@src.gnome.org> | 2009-01-18 07:46:45 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2009-01-18 07:46:45 +0800 |
commit | 8e546420df08f5fe243aa4227be44915fd79b86b (patch) | |
tree | 9475c4be3cf2eedceaa0122f5071a6f2914f3dd4 /shell | |
parent | c22126d54f0cf0637e3d5ddd5d78b3ff5d111582 (diff) | |
download | gsoc2013-evolution-8e546420df08f5fe243aa4227be44915fd79b86b.tar.gz gsoc2013-evolution-8e546420df08f5fe243aa4227be44915fd79b86b.tar.zst gsoc2013-evolution-8e546420df08f5fe243aa4227be44915fd79b86b.zip |
Fix a runtime warning.
svn path=/branches/kill-bonobo/; revision=37094
Diffstat (limited to 'shell')
-rw-r--r-- | shell/e-shell-window-private.c | 1 | ||||
-rw-r--r-- | shell/main.c | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/shell/e-shell-window-private.c b/shell/e-shell-window-private.c index 6fcdc2b6fc..f16a8a68f5 100644 --- a/shell/e-shell-window-private.c +++ b/shell/e-shell-window-private.c @@ -264,6 +264,7 @@ e_shell_window_private_init (EShellWindow *shell_window) gtk_widget_show (widget); widget = gtk_hbox_new (FALSE, 2); + gtk_container_set_border_width (GTK_CONTAINER (widget), 1); gtk_box_pack_start (GTK_BOX (container), widget, FALSE, FALSE, 0); priv->status_area = g_object_ref (widget); gtk_widget_show (widget); diff --git a/shell/main.c b/shell/main.c index 6dac5f062b..0cf8c77d8c 100644 --- a/shell/main.c +++ b/shell/main.c @@ -187,7 +187,6 @@ categories_icon_theme_hack (void) /* Extract the directory components. */ dirname = g_path_get_dirname (filename); - g_debug ("Category Icon Path: %s", dirname); /* Add it to the icon theme's search path. This relies on * GtkIconTheme's legacy feature of using image files found |