summaryrefslogtreecommitdiff
path: root/daemon/gdm-session.h
diff options
context:
space:
mode:
authorRay Strode <rstrode@redhat.com>2010-02-08 16:08:56 -0500
committerRay Strode <rstrode@redhat.com>2010-02-08 16:18:11 -0500
commitf5c918550dbabe04ece27e9f80234af93ef54514 (patch)
tree3448280f47201e406b195bc9c6fe02e6908d5a6f /daemon/gdm-session.h
parent0f1de4cc52364d6a6bbb0becff6177cef81e0183 (diff)
downloadgdm-f5c918550dbabe04ece27e9f80234af93ef54514.tar.gz
Rename session "Open" method to "StartConversation"
Open is very general. If we rename it, then we can use the term "open" for the state after PAM finishes checking identity, authorizing, and giving out credentials, before a session is started.
Diffstat (limited to 'daemon/gdm-session.h')
-rw-r--r--daemon/gdm-session.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/daemon/gdm-session.h b/daemon/gdm-session.h
index dfb7e273..afe7b831 100644
--- a/daemon/gdm-session.h
+++ b/daemon/gdm-session.h
@@ -45,7 +45,7 @@ struct _GdmSessionIface
GTypeInterface base_iface;
/* Methods */
- void (* open) (GdmSession *session);
+ void (* start_conversation) (GdmSession *session);
void (* setup) (GdmSession *session,
const char *service_name);
void (* setup_for_user) (GdmSession *session,
@@ -103,7 +103,7 @@ struct _GdmSessionIface
int exit_code);
void (* session_died) (GdmSession *session,
int signal_number);
- void (* opened) (GdmSession *session);
+ void (* conversation_started) (GdmSession *session);
void (* closed) (GdmSession *session);
void (* selected_user_changed) (GdmSession *session,
const char *text);
@@ -118,7 +118,7 @@ struct _GdmSessionIface
GType gdm_session_get_type (void) G_GNUC_CONST;
-void gdm_session_open (GdmSession *session);
+void gdm_session_start_conversation (GdmSession *session);
void gdm_session_setup (GdmSession *session,
const char *service_name);
void gdm_session_setup_for_user (GdmSession *session,