aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/groupwise-features/send-options.c
diff options
context:
space:
mode:
authorMilan Crha <mcrha@src.gnome.org>2007-08-10 14:10:35 +0800
committerMilan Crha <mcrha@src.gnome.org>2007-08-10 14:10:35 +0800
commitf02772e536c4bdda07a50bd09f38c92b7c8feebf (patch)
treeb797a37676b137cb6cf354630e27d2d99d3b64d7 /plugins/groupwise-features/send-options.c
parent249152e57024aa04d383565d0d14cbb39c5df7db (diff)
downloadgsoc2013-evolution-f02772e536c4bdda07a50bd09f38c92b7c8feebf.tar
gsoc2013-evolution-f02772e536c4bdda07a50bd09f38c92b7c8feebf.tar.gz
gsoc2013-evolution-f02772e536c4bdda07a50bd09f38c92b7c8feebf.tar.bz2
gsoc2013-evolution-f02772e536c4bdda07a50bd09f38c92b7c8feebf.tar.lz
gsoc2013-evolution-f02772e536c4bdda07a50bd09f38c92b7c8feebf.tar.xz
gsoc2013-evolution-f02772e536c4bdda07a50bd09f38c92b7c8feebf.tar.zst
gsoc2013-evolution-f02772e536c4bdda07a50bd09f38c92b7c8feebf.zip
2007-08-10 mcrha Fix for bug #327977
svn path=/trunk/; revision=33972
Diffstat (limited to 'plugins/groupwise-features/send-options.c')
-rw-r--r--plugins/groupwise-features/send-options.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/groupwise-features/send-options.c b/plugins/groupwise-features/send-options.c
index 0e46c91219..438e48e15f 100644
--- a/plugins/groupwise-features/send-options.c
+++ b/plugins/groupwise-features/send-options.c
@@ -50,7 +50,7 @@ void send_options_changed (EPlugin *epl, EConfigHookItemFactoryData *data);
void send_options_abort (EPlugin *epl, EConfigHookItemFactoryData *data);
static EGwConnection *
-get_cnc ()
+get_cnc (GtkWindow *parent_window)
{
EGwConnection *cnc;
char *uri, *failed_auth, *key, *prompt, *password = NULL;
@@ -86,7 +86,7 @@ get_cnc ()
password = e_passwords_get_password ("Groupwise", key);
if (!password)
password = e_passwords_ask_password (prompt, "Groupwise", key, prompt,
- E_PASSWORDS_REMEMBER_FOREVER|E_PASSWORDS_SECRET, &remember, NULL);
+ E_PASSWORDS_REMEMBER_FOREVER|E_PASSWORDS_SECRET, &remember, parent_window);
g_free (prompt);
cnc = e_gw_connection_new (uri, url->user, password);
@@ -168,7 +168,7 @@ e_sendoptions_clicked_cb (GtkWidget *button, gpointer data)
sod = e_sendoptions_dialog_new ();
e_sendoptions_set_global (sod, TRUE);
if (!n_cnc)
- n_cnc = get_cnc ();
+ n_cnc = get_cnc (GTK_WINDOW (gtk_widget_get_toplevel (button)));
if (!n_cnc) {
g_warning ("Send Options: Could not get the connection to the server \n");