Mercurial > pidgin
comparison doc/TCL-HOWTO.dox @ 26901:b98d066df628
merge of '40d000364c4c9c5b0a3971fbe7bb4878e3737202'
and '6a6409370fa50e23bc8fdedcef230220fa680a36'
author | Etan Reisner <pidgin@unreliablesource.net> |
---|---|
date | Mon, 18 May 2009 02:47:21 +0000 |
parents | e5ebf3abd9f8 |
children |
comparison
equal
deleted
inserted
replaced
26667:a3595b330671 | 26901:b98d066df628 |
---|---|
171 @code | 171 @code |
172 purple::connection account gc | 172 purple::connection account gc |
173 purple::connection displayname gc | 173 purple::connection displayname gc |
174 purple::connection handle | 174 purple::connection handle |
175 purple::connection list | 175 purple::connection list |
176 purple::connection state | |
176 @endcode | 177 @endcode |
177 | 178 |
178 @c purple::connection is a collection of subcommands pertaining to | 179 @c purple::connection is a collection of subcommands pertaining to |
179 account connections. | 180 account connections. |
180 | 181 |
189 <tt>purple::signal connect</tt>). | 190 <tt>purple::signal connect</tt>). |
190 | 191 |
191 @c list returns a list of all known connections. The elements of | 192 @c list returns a list of all known connections. The elements of |
192 this list are appropriate as @c gc arguments to the other | 193 this list are appropriate as @c gc arguments to the other |
193 @c purple::connection subcommands or other commands requiring a gc. | 194 @c purple::connection subcommands or other commands requiring a gc. |
195 | |
196 @c state returns the PurpleConnectionState of this account as one of | |
197 the strings "connected", "disconnected", or "connecting". | |
194 | 198 |
195 @code | 199 @code |
196 purple::conv_send account who text | 200 purple::conv_send account who text |
197 @endcode | 201 @endcode |
198 | 202 |