[Goodies-commits] r7002 - gigolo/trunk/src
Enrico Troeger
enrico at xfce.org
Thu Mar 26 19:25:21 CET 2009
Author: enrico
Date: 2009-03-26 18:25:21 +0000 (Thu, 26 Mar 2009)
New Revision: 7002
Modified:
gigolo/trunk/src/mountoperation.c
Log:
Sync with GTK upstream (see http://svn.gnome.org/viewvc/gtk+?view=revision&revision=22496).
Modified: gigolo/trunk/src/mountoperation.c
===================================================================
--- gigolo/trunk/src/mountoperation.c 2009-03-26 18:25:16 UTC (rev 7001)
+++ gigolo/trunk/src/mountoperation.c 2009-03-26 18:25:21 UTC (rev 7002)
@@ -358,6 +358,7 @@
can_anonymous = flags & G_ASK_PASSWORD_ANONYMOUS_SUPPORTED;
+ priv->anonymous_toggle = NULL;
if (can_anonymous)
{
GtkWidget *anon_box;
@@ -404,12 +405,15 @@
rows = 0;
+ priv->username_entry = NULL;
if (flags & G_ASK_PASSWORD_NEED_USERNAME)
priv->username_entry = table_add_entry(table, rows++, "_Username:", default_user, operation);
+ priv->domain_entry = NULL;
if (flags & G_ASK_PASSWORD_NEED_DOMAIN)
priv->domain_entry = table_add_entry(table, rows++, "_Domain:", default_domain, operation);
+ priv->password_entry = NULL;
if (flags & G_ASK_PASSWORD_NEED_PASSWORD)
{
priv->password_entry = table_add_entry(table, rows++, "_Password:", NULL, operation);
More information about the Goodies-commits
mailing list