From f01da8baa40dfb82ec764a53fd34ce67765aa171 Mon Sep 17 00:00:00 2001 From: Ettore Perazzoli Date: Sun, 7 May 2000 14:52:26 +0000 Subject: Fix incorrect casting. svn path=/trunk/; revision=2873 --- shell/ChangeLog | 5 +++++ shell/e-shortcuts-view.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) (limited to 'shell') diff --git a/shell/ChangeLog b/shell/ChangeLog index a1ed3bd662..3126468d89 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,8 @@ +2000-05-07 Ettore Perazzoli + + * e-shortcuts-view.c (e_shortcuts_view_construct): Use + correct cast. + 2000-05-07 Ettore Perazzoli * main.c (main): Connect to "no_views_left", not "destroy". diff --git a/shell/e-shortcuts-view.c b/shell/e-shortcuts-view.c index a6f7f73fe1..ca36020c69 100644 --- a/shell/e-shortcuts-view.c +++ b/shell/e-shortcuts-view.c @@ -135,7 +135,7 @@ e_shortcuts_view_construct (EShortcutsView *shortcuts_view, priv = shortcuts_view->priv; priv->shortcuts = shortcuts; - gtk_object_ref (E_SHORTCUTS (shortcuts)); + gtk_object_ref (GTK_OBJECT (shortcuts)); } GtkWidget * -- cgit