diff options
author | Priit Laes <plaes@plaes.org> | 2009-07-25 00:12:54 +0800 |
---|---|---|
committer | Priit Laes <plaes@plaes.org> | 2009-07-29 17:42:14 +0800 |
commit | f64c5a8275701a2d9d22d9b9e75288c7fb161700 (patch) | |
tree | f84ed791d35f9e34bc952356cf8a9ecce59b5dde /src | |
parent | 4e351b7594260829fa6b38762b3c69927e7d2dc3 (diff) | |
download | gsoc2013-epiphany-f64c5a8275701a2d9d22d9b9e75288c7fb161700.tar gsoc2013-epiphany-f64c5a8275701a2d9d22d9b9e75288c7fb161700.tar.gz gsoc2013-epiphany-f64c5a8275701a2d9d22d9b9e75288c7fb161700.tar.bz2 gsoc2013-epiphany-f64c5a8275701a2d9d22d9b9e75288c7fb161700.tar.lz gsoc2013-epiphany-f64c5a8275701a2d9d22d9b9e75288c7fb161700.tar.xz gsoc2013-epiphany-f64c5a8275701a2d9d22d9b9e75288c7fb161700.tar.zst gsoc2013-epiphany-f64c5a8275701a2d9d22d9b9e75288c7fb161700.zip |
Use correct column from store for deletion.
Signed-off-by: Priit Laes <plaes@plaes.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/pdm-dialog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pdm-dialog.c b/src/pdm-dialog.c index 318fbf752..697773cd0 100644 --- a/src/pdm-dialog.c +++ b/src/pdm-dialog.c @@ -265,7 +265,7 @@ clear_all_dialog_response_cb (GtkDialog *dialog, gboolean result; gtk_tree_model_get_value (model, &iter, - COL_PASSWORDS_PASS, &val); + COL_PASSWORDS_DATA, &val); result = pdm_dialog_password_remove(pinfo, g_value_get_boxed (&val)); g_value_unset (&val); |