G_PASSWORD_FLAGS_ANON_SUPPORTED -> G_PASSWORD_FLAGS_ANONYMOUS_SUPPORTED

2007-12-13  Alexander Larsson  <alexl@redhat.com>

        * gmountoperation.h:
	G_PASSWORD_FLAGS_ANON_SUPPORTED -> G_PASSWORD_FLAGS_ANONYMOUS_SUPPORTED


svn path=/trunk/; revision=6106
This commit is contained in:
Alexander Larsson 2007-12-13 13:35:25 +00:00 committed by Alexander Larsson
parent afc16811d8
commit 77162a7c7c
2 changed files with 11 additions and 6 deletions

View File

@ -1,3 +1,8 @@
2007-12-13 Alexander Larsson <alexl@redhat.com>
* gmountoperation.h:
G_PASSWORD_FLAGS_ANON_SUPPORTED -> G_PASSWORD_FLAGS_ANONYMOUS_SUPPORTED
2007-12-12 Alexander Larsson <alexl@redhat.com>
* gioscheduler.c:

View File

@ -59,7 +59,7 @@ struct _GMountOperation
* @G_PASSWORD_FLAGS_NEED_USERNAME: operation requires a username.
* @G_PASSWORD_FLAGS_NEED_DOMAIN: operation requires a domain.
* @G_PASSWORD_FLAGS_SAVING_SUPPORTED: operation supports saving settings.
* @G_PASSWORD_FLAGS_ANON_SUPPORTED: operation supports anonymous users.
* @G_PASSWORD_FLAGS_ANONYMOUS_SUPPORTED: operation supports anonymous users.
*
* #GPasswordFlags are used to request specific information from the
* user, or to notify the user of their choices in an authentication
@ -71,7 +71,7 @@ typedef enum {
G_PASSWORD_FLAGS_NEED_USERNAME = 1<<1,
G_PASSWORD_FLAGS_NEED_DOMAIN = 1<<2,
G_PASSWORD_FLAGS_SAVING_SUPPORTED = 1<<3,
G_PASSWORD_FLAGS_ANON_SUPPORTED = 1<<4
G_PASSWORD_FLAGS_ANONYMOUS_SUPPORTED = 1<<4
} GPasswordFlags;
/**