comparison src/connection.h @ 10272:bf1ebc8f3bf3

[gaim-migrate @ 11421] Change "Signoff" to "Log Out" in a few user-visible places. I <dinky little heart> consistency. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sat, 27 Nov 2004 17:07:28 +0000
parents 2f41f462ab4e
children 5879593a6a10
comparison
equal deleted inserted replaced
10271:361c9170d8af 10272:bf1ebc8f3bf3
91 int is_idle; /**< Idle state of the connection. */ 91 int is_idle; /**< Idle state of the connection. */
92 92
93 gboolean is_auto_away; /**< Whether or not it's auto-away. */ 93 gboolean is_auto_away; /**< Whether or not it's auto-away. */
94 94
95 gboolean wants_to_die; /**< Wants to Die state. This is set 95 gboolean wants_to_die; /**< Wants to Die state. This is set
96 when the user chooses to sign off, 96 when the user chooses to log out,
97 or when the protocol is 97 or when the protocol is
98 disconnected and should not be 98 disconnected and should not be
99 automatically reconnected 99 automatically reconnected
100 (incorrect password, etc.) */ 100 (incorrect password, etc.) */
101 guint disconnect_timeout; /**< Timer used for nasty stack tricks */ 101 guint disconnect_timeout; /**< Timer used for nasty stack tricks */
125 * @param gc The gaim connection to destroy. 125 * @param gc The gaim connection to destroy.
126 */ 126 */
127 void gaim_connection_destroy(GaimConnection *gc); 127 void gaim_connection_destroy(GaimConnection *gc);
128 128
129 /** 129 /**
130 * Signs a connection on. 130 * Logs in to this connection.
131 * 131 *
132 * @param gc The connection to sign on. 132 * @param gc The connection to log in.
133 * 133 *
134 * @see gaim_connection_disconnect() 134 * @see gaim_connection_disconnect()
135 */ 135 */
136 void gaim_connection_connect(GaimConnection *gc); 136 void gaim_connection_connect(GaimConnection *gc);
137 137
141 * @param gc The connection to register. 141 * @param gc The connection to register.
142 */ 142 */
143 void gaim_connection_register(GaimConnection *gc); 143 void gaim_connection_register(GaimConnection *gc);
144 144
145 /** 145 /**
146 * Signs a connection off. 146 * Logs out of this connection.
147 * 147 *
148 * @param gc The connection to sign off. 148 * @param gc The connection to log out.
149 * 149 *
150 * @see gaim_connection_connect() 150 * @see gaim_connection_connect()
151 */ 151 */
152 void gaim_connection_disconnect(GaimConnection *gc); 152 void gaim_connection_disconnect(GaimConnection *gc);
153 153