From 7140264bb8bc17127731ff10d4d11c1e96aa25f0 Mon Sep 17 00:00:00 2001 From: Ettore Perazzoli Date: Tue, 3 Sep 2002 19:16:58 +0000 Subject: (delete_contact_cb): Fix typo [`view>view' instead of `view->view']. Also, cast to GTK_WINDOW instead of GTK_WIDGET as it should be. svn path=/trunk/; revision=17951 --- addressbook/ChangeLog | 6 ++++++ addressbook/gui/component/addressbook.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index c508173bda..99ead9e409 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,9 @@ +2002-09-03 Ettore Perazzoli + + * gui/component/addressbook.c (delete_contact_cb): Fix typo + [`view>view' instead of `view->view']. Also, cast to + GTK_WINDOW instead of GTK_WIDGET as it should be. + 2002-08-30 Dan Winship * backend/idl/addressbook.idl (CallStatus): add QueryRefused, for diff --git a/addressbook/gui/component/addressbook.c b/addressbook/gui/component/addressbook.c index 74e21bbf47..6169dd5753 100644 --- a/addressbook/gui/component/addressbook.c +++ b/addressbook/gui/component/addressbook.c @@ -102,7 +102,7 @@ delete_contact_cb (BonoboUIComponent *uih, void *user_data, const char *path) { AddressbookView *view = (AddressbookView *) user_data; if (view->view) { - if (e_contact_editor_confirm_delete (GTK_WIDGET (view>view))) + if (e_contact_editor_confirm_delete (GTK_WINDOW (view->view))) e_addressbook_view_delete_selection(view->view); } } -- cgit v1.2.3