diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2000-05-07 22:52:26 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2000-05-07 22:52:26 +0800 |
commit | f01da8baa40dfb82ec764a53fd34ce67765aa171 (patch) | |
tree | 045b4187d8814eab678057864ab4c450a5db4320 /shell/e-shortcuts-view.c | |
parent | b6158efa98ff85fee395f97d69dc63434d4429cb (diff) | |
download | gsoc2013-evolution-f01da8baa40dfb82ec764a53fd34ce67765aa171.tar.gz gsoc2013-evolution-f01da8baa40dfb82ec764a53fd34ce67765aa171.tar.zst gsoc2013-evolution-f01da8baa40dfb82ec764a53fd34ce67765aa171.zip |
Fix incorrect casting.
svn path=/trunk/; revision=2873
Diffstat (limited to 'shell/e-shortcuts-view.c')
-rw-r--r-- | shell/e-shortcuts-view.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 * |