From f2d41daea48b9dd3295cc978758c57272c2ad205 Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Sat, 21 Aug 2004 16:45:25 +0000 Subject: Fix crash when removing a password, introduced by the last commit. 2004-08-21 Christian Persch * doc/reference/tmpl/ephy-embed.sgml: * src/pdm-dialog.c: (pdm_dialog_password_remove): Fix crash when removing a password, introduced by the last commit. --- ChangeLog | 7 +++++++ doc/reference/tmpl/ephy-embed.sgml | 2 ++ src/pdm-dialog.c | 4 ++-- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 241a4f2c3..b7e445118 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2004-08-21 Christian Persch + + * doc/reference/tmpl/ephy-embed.sgml: + * src/pdm-dialog.c: (pdm_dialog_password_remove): + + Fix crash when removing a password, introduced by the last commit. + 2004-08-21 Christian Persch * embed/ephy-password-manager.c: (ephy_password_manager_get_type), diff --git a/doc/reference/tmpl/ephy-embed.sgml b/doc/reference/tmpl/ephy-embed.sgml index 111d63329..ae6f07831 100644 --- a/doc/reference/tmpl/ephy-embed.sgml +++ b/doc/reference/tmpl/ephy-embed.sgml @@ -138,6 +138,8 @@ be done by casting). @: @: @: +@: +@: @: diff --git a/src/pdm-dialog.c b/src/pdm-dialog.c index d934225ac..68f054479 100755 --- a/src/pdm-dialog.c +++ b/src/pdm-dialog.c @@ -773,12 +773,12 @@ pdm_dialog_password_remove (PdmActionInfo *info, * selection in the process. */ g_signal_handlers_block_by_func - (manager, G_CALLBACK (passwords_changed_cb), info); + (manager, G_CALLBACK (passwords_changed_cb), info->dialog); ephy_password_manager_remove (manager, pinfo); g_signal_handlers_unblock_by_func - (manager, G_CALLBACK (passwords_changed_cb), info); + (manager, G_CALLBACK (passwords_changed_cb), info->dialog); } /* common routines */ -- cgit v1.2.3