aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-08-20 07:40:46 +0800
committerChris Lahey <clahey@src.gnome.org>2000-08-20 07:40:46 +0800
commit1a2372438209e8aa26310ebec78d2e58707cfe57 (patch)
tree673c89763bba43390e27b3c7984572d6affe4446
parent9c063747b40e17c45f3a6f524c6cfe9d6838c508 (diff)
downloadgsoc2013-evolution-1a2372438209e8aa26310ebec78d2e58707cfe57.tar
gsoc2013-evolution-1a2372438209e8aa26310ebec78d2e58707cfe57.tar.gz
gsoc2013-evolution-1a2372438209e8aa26310ebec78d2e58707cfe57.tar.bz2
gsoc2013-evolution-1a2372438209e8aa26310ebec78d2e58707cfe57.tar.lz
gsoc2013-evolution-1a2372438209e8aa26310ebec78d2e58707cfe57.tar.xz
gsoc2013-evolution-1a2372438209e8aa26310ebec78d2e58707cfe57.tar.zst
gsoc2013-evolution-1a2372438209e8aa26310ebec78d2e58707cfe57.zip
Fixed a warning.
2000-08-19 Christopher James Lahey <clahey@helixcode.com> * e-shell-folder-title-bar.c: Fixed a warning. svn path=/trunk/; revision=4884
-rw-r--r--shell/ChangeLog4
-rw-r--r--shell/e-shell-folder-title-bar.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index 4d4331fe9f..2360862264 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,5 +1,9 @@
2000-08-19 Christopher James Lahey <clahey@helixcode.com>
+ * e-shell-folder-title-bar.c: Fixed a warning.
+
+2000-08-19 Christopher James Lahey <clahey@helixcode.com>
+
* e-shell-view.c: Fixed a warning.
2000-08-18 Larry Ewing <lewing@helixcode.com>
diff --git a/shell/e-shell-folder-title-bar.c b/shell/e-shell-folder-title-bar.c
index 62b0958b20..00d0e70e98 100644
--- a/shell/e-shell-folder-title-bar.c
+++ b/shell/e-shell-folder-title-bar.c
@@ -480,10 +480,10 @@ e_shell_folder_title_bar_set_icon (EShellFolderTitleBar *folder_title_bar,
priv = folder_title_bar->priv;
- gdk_pixbuf_ref (icon);
+ gdk_pixbuf_ref ((GdkPixbuf *) icon);
if (priv->icon)
gdk_pixbuf_unref (priv->icon);
- priv->icon = icon;
+ priv->icon = (GdkPixbuf *) icon;
pixmap = make_icon_pixmap (folder_title_bar, icon);