Changeset 398
- Timestamp:
- 05/27/06 11:34:34
- Files:
-
- trunk (modified) (1 prop)
- trunk/.svnignore (modified) (1 diff)
- trunk/libtinymail/tny-account-store-iface.c (modified) (4 diffs)
- trunk/libtinymail/tny-device-iface.c (modified) (1 diff)
- trunk/libtinymail/tny-fs-stream.c (modified) (2 diffs)
- trunk/libtinymail/tny-msg-folder-iface.c (modified) (2 diffs)
- trunk/libtinymail/tny-msg-header-iface.c (modified) (2 diffs)
- trunk/libtinymail/tny-msg-mime-part-iface.c (modified) (1 diff)
- trunk/libtinymail/tny-store-account-iface.c (modified) (2 diffs)
- trunk/libtinymailui-gtk/tny-msg-header-view.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk
- Property svn:ignore changed from config.h stamp-h1 libtinymail-*.tar.gz libtinymail.spec .anjuta .svnignore .tm_project2.cache configure config.log depcomp TODO.tasks config.guess ltmain.sh config.sub anjuta gtk-doc.make tinymail.anjuta Makefile Makefile.in mkinstalldirs config.status autom4te.cache libtool tm_project2.cache missing aclocal.m4 install-sh to anjuta.anjuta config.h stamp-h1 libtinymail-*.tar.gz libtinymail.spec .anjuta .svnignore .tm_project2.cache configure config.log depcomp TODO.tasks config.guess ltmain.sh config.sub anjuta gtk-doc.make tinymail.anjuta Makefile Makefile.in mkinstalldirs config.status autom4te.cache libtool tm_project2.cache missing aclocal.m4 install-sh
trunk/.svnignore
r379 r398 1 anjuta.anjuta 1 2 config.h 2 3 stamp-h1 trunk/libtinymail/tny-account-store-iface.c
r379 r398 138 138 * @account: the #TnyAccountIface of the account that changed 139 139 * 140 * The "account_changed" signal is emitted when an account in the store changed141 * */140 * Emitted when an account in the store changed 141 */ 142 142 tny_account_store_iface_signals[ACCOUNT_CHANGED] = 143 143 g_signal_new ("account_changed", … … 154 154 * @account: the #TnyAccountIface of the account that got inserted 155 155 * 156 * The "account_inserted" signal is emitted when an account is added to the 157 * store 158 **/ 156 * Emitted when an account is added to the store 157 */ 159 158 160 159 … … 173 172 * @account: the #TnyAccountIface of the account that got removed 174 173 * 175 * The "account_removed" signal is emitted when an account is removed from the 176 * store 177 **/ 174 * Emitted when an account is removed from the store 175 */ 178 176 tny_account_store_iface_signals[ACCOUNT_REMOVED] = 179 177 g_signal_new ("account_removed", … … 189 187 * @self: the object on which the signal is emitted 190 188 * 191 * The "accounts_reloaded" signal is emitted when the store reloaded the 192 * accounts 193 **/ 189 * Emitted when the store reloads the accounts 190 */ 194 191 tny_account_store_iface_signals[ACCOUNTS_RELOADED] = 195 192 g_signal_new ("accounts_reloaded", trunk/libtinymail/tny-device-iface.c
r379 r398 46 46 * @online: Whether or not the device is now online 47 47 * 48 * The "connection_changed" signal is emitted when the connection 49 * status of a device changes. 50 **/ 48 * Emitted when the connection status of a device changes. 49 */ 51 50 tny_device_iface_signals[CONNECTION_CHANGED] = 52 51 g_signal_new ("connection_changed", trunk/libtinymail/tny-fs-stream.c
r379 r398 137 137 * tny_fs_stream_set_fd: 138 138 * @self: A #TnyFsStream instance 139 * @ handle: The file descriptor to write to or read from139 * @fd: The file descriptor to write to or read from 140 140 * 141 141 * Set the file descriptor to play adaptor for … … 165 165 /** 166 166 * tny_fs_stream_new: 167 * @ handle: The file descriptor to write to or read from167 * @fd: The file descriptor to write to or read from 168 168 * 169 169 * Create an adaptor instance between #TnyStreamIface and a file descriptor trunk/libtinymail/tny-msg-folder-iface.c
r379 r398 289 289 * @folder: the #TnyMsgFolderIface as the added folder 290 290 * 291 * The "folder_inserted" signal is emitted when a folder got added to 292 * the folder 291 * Emitted when a folder gets added to the folder 293 292 **/ 294 293 tny_msg_folder_iface_signals[FOLDER_INSERTED] = … … 305 304 * @self: the object on which the signal is emitted 306 305 * 307 * The "folders_reloaded" signal is emitted when the folder got 308 * reloaded. 309 **/ 306 * Emitted when the folder gets reloaded. 307 */ 310 308 tny_msg_folder_iface_signals[FOLDERS_RELOADED] = 311 309 g_signal_new ("folders_reloaded", trunk/libtinymail/tny-msg-header-iface.c
r379 r398 56 56 * tny_msg_header_iface_set_bcc: 57 57 * @self: a #TnyMsgHeaderIface object 58 * @ from: the bcc header in a comma separated list58 * @bcc: the bcc header in a comma separated list 59 59 * 60 60 * Set the bcc header. Also look at the to header for more information … … 72 72 * tny_msg_header_iface_set_cc: 73 73 * @self: a #TnyMsgHeaderIface object 74 * @ from: the cc header in a comma separated list74 * @cc: the cc header in a comma separated list 75 75 * 76 76 * Set the cc header. Also look at the to header for more information trunk/libtinymail/tny-msg-mime-part-iface.c
r379 r398 247 247 * tny_msg_mime_part_iface_content_type_is: 248 248 * @self: a #TnyMsgMimePartIface object 249 * @content_type: The content type in the string format "type/subtype"249 * @content_type: The content type in the string format type/subtype 250 250 * 251 251 * Efficiently checks whether a part is of type content_type trunk/libtinymail/tny-store-account-iface.c
r379 r398 26 26 * tny_store_account_iface_unsubscribe: 27 27 * @self: a #TnyStoreAccountIface object 28 * @folder _name: The folder nameto unsubscribe from28 * @folder: The folder to unsubscribe from 29 29 * 30 30 * Unsubscribe from a folder … … 41 41 * tny_store_account_iface_subscribe: 42 42 * @self: a #TnyStoreAccountIface object 43 * @folder _name: The folder nameto subscribe to43 * @folder: The folder to subscribe to 44 44 * 45 45 * Subscribe to a folder trunk/libtinymailui-gtk/tny-msg-header-view.c
r380 r398 85 85 /** 86 86 * tny_msg_header_view_new: 87 * @save_strategy: The save strategy to use88 87 * 89 88 * Return value: a new #TnyMsgHeaderViewIface instance implemented for Gtk+
