comparison ChangeLog.API @ 14587:bee5661c15cb

[gaim-migrate @ 17311] I couldn't see a reason why we needed all of gaim_gtk_roomlist_dialog_new, gaim_gtk_roomlist_dialog_new_with_account, gaim_gtk_roomlist_dialog_show, and gaim_gtk_roomlist_dialog_show_with_account especially considering the _show functions basically just called the _new functions. So I whittled us down to just _show and _show_with_account being visible. And since nothing outside GtkRoomlist.c was using the GaimGtkRoomlistDialog struct I made that private too. committer: Tailor Script <tailor@pidgin.im>
author Etan Reisner <pidgin@unreliablesource.net>
date Mon, 18 Sep 2006 18:14:50 +0000
parents ac6120e2e27c
children 1a219542abdc
comparison
equal deleted inserted replaced
14586:089e65ea9813 14587:bee5661c15cb
197 GaimConversation 197 GaimConversation
198 * Removed ui_ops from GaimBuddyList. Use gaim_blist_get_ui_ops() instead 198 * Removed ui_ops from GaimBuddyList. Use gaim_blist_get_ui_ops() instead
199 * GaimGtkLogViewer hidden... You weren't using it anyway. 199 * GaimGtkLogViewer hidden... You weren't using it anyway.
200 * GaimGtkConversation: dialogs (dialogs.search moved to GaimGtkWindow) 200 * GaimGtkConversation: dialogs (dialogs.search moved to GaimGtkWindow)
201 * gaim_show_xfer_dialog: Use gaim_gtk_xfer_dialog_show(NULL) instead. 201 * gaim_show_xfer_dialog: Use gaim_gtk_xfer_dialog_show(NULL) instead.
202 * GaimGtkRoomlistDialog: Nothing used it outside of the file it was in.
203 * gaim_gtk_roomlist_dialog_new: use gaim_gtk_roomlist_show
204 * gaim_gtk_roomlist_dialog_new_with_account: use gaim_gtk_roomlist_show_with_account
202 205
203 Added: 206 Added:
204 * gaim_prefs_disconnect_by_handle() 207 * gaim_prefs_disconnect_by_handle()
205 * a password field to GaimConnection, which only persists for the 208 * a password field to GaimConnection, which only persists for the
206 session (when "remember password" is false, account->password is 209 session (when "remember password" is false, account->password is
323 call to gaim_util_fetch_url() or gaim_util_fetch_url_request(). 326 call to gaim_util_fetch_url() or gaim_util_fetch_url_request().
324 * GaimGtkWindow: dialogs.search (previously in GaimGtkConversation) 327 * GaimGtkWindow: dialogs.search (previously in GaimGtkConversation)
325 * gaim_buddy_get_server_alias() 328 * gaim_buddy_get_server_alias()
326 * gaim_conv_send_confirm() 329 * gaim_conv_send_confirm()
327 * GaimConversationUiOps.send_confirm 330 * GaimConversationUiOps.send_confirm
331 * gaim_gtk_roomlist_dialog_show_with_account
328 332
329 Signals - Changed: (See the Doxygen docs for details on all signals.) 333 Signals - Changed: (See the Doxygen docs for details on all signals.)
330 * Signal propagation now stops after a handler returns a non-NULL value. 334 * Signal propagation now stops after a handler returns a non-NULL value.
331 This value is now returned. Previously, all registered handlers were 335 This value is now returned. Previously, all registered handlers were
332 called and the value from the last handler was used. 336 called and the value from the last handler was used.