# HG changeset patch # User Gary Kramlich # Date 1177895908 0 # Node ID fbf1114368961e8645cbb9fb3d6367fff835508e # Parent 072e10e530374fc37191f58363dec139568895b0 Patch from John 'rekkanoryo' Bailey to add the padding struct members in pidgin diff -r 072e10e53037 -r fbf111436896 pidgin/gtkaccount.c --- a/pidgin/gtkaccount.c Mon Apr 30 01:08:22 2007 +0000 +++ b/pidgin/gtkaccount.c Mon Apr 30 01:18:28 2007 +0000 @@ -2571,7 +2571,11 @@ NULL, pidgin_accounts_request_add, pidgin_accounts_request_authorization, - pidgin_accounts_request_close + pidgin_accounts_request_close, + NULL, + NULL, + NULL, + NULL }; PurpleAccountUiOps * diff -r 072e10e53037 -r fbf111436896 pidgin/gtkblist.c --- a/pidgin/gtkblist.c Mon Apr 30 01:08:22 2007 +0000 +++ b/pidgin/gtkblist.c Mon Apr 30 01:18:28 2007 +0000 @@ -5865,7 +5865,11 @@ pidgin_blist_set_visible, pidgin_blist_request_add_buddy, pidgin_blist_request_add_chat, - pidgin_blist_request_add_group + pidgin_blist_request_add_group, + NULL, + NULL, + NULL, + NULL }; diff -r 072e10e53037 -r fbf111436896 pidgin/gtkconn.c --- a/pidgin/gtkconn.c Mon Apr 30 01:08:22 2007 +0000 +++ b/pidgin/gtkconn.c Mon Apr 30 01:18:28 2007 +0000 @@ -248,7 +248,11 @@ pidgin_connection_notice, pidgin_connection_report_disconnect, pidgin_connection_network_connected, - pidgin_connection_network_disconnected + pidgin_connection_network_disconnected, + NULL, + NULL, + NULL, + NULL }; PurpleConnectionUiOps * diff -r 072e10e53037 -r fbf111436896 pidgin/gtkconv.c --- a/pidgin/gtkconv.c Mon Apr 30 01:08:22 2007 +0000 +++ b/pidgin/gtkconv.c Mon Apr 30 01:18:28 2007 +0000 @@ -6161,6 +6161,10 @@ pidgin_conv_custom_smiley_write, /* custom_smiley_write */ pidgin_conv_custom_smiley_close, /* custom_smiley_close */ pidgin_conv_send_confirm, /* send_confirm */ + NULL, + NULL, + NULL, + NULL }; PurpleConversationUiOps * diff -r 072e10e53037 -r fbf111436896 pidgin/gtkdebug.c --- a/pidgin/gtkdebug.c Mon Apr 30 01:08:22 2007 +0000 +++ b/pidgin/gtkdebug.c Mon Apr 30 01:18:28 2007 +0000 @@ -1116,7 +1116,11 @@ static PurpleDebugUiOps ops = { pidgin_debug_print, - pidgin_debug_is_enabled + pidgin_debug_is_enabled, + NULL, + NULL, + NULL, + NULL }; PurpleDebugUiOps * diff -r 072e10e53037 -r fbf111436896 pidgin/gtkeventloop.c --- a/pidgin/gtkeventloop.c Mon Apr 30 01:08:22 2007 +0000 +++ b/pidgin/gtkeventloop.c Mon Apr 30 01:18:28 2007 +0000 @@ -119,7 +119,11 @@ g_source_remove, pidgin_input_add, g_source_remove, - NULL /* input_get_error */ + NULL, /* input_get_error */ + NULL, + NULL, + NULL, + NULL }; PurpleEventLoopUiOps * diff -r 072e10e53037 -r fbf111436896 pidgin/gtkft.c --- a/pidgin/gtkft.c Mon Apr 30 01:08:22 2007 +0000 +++ b/pidgin/gtkft.c Mon Apr 30 01:18:28 2007 +0000 @@ -1222,7 +1222,11 @@ pidgin_xfer_add_xfer, pidgin_xfer_update_progress, pidgin_xfer_cancel_local, - pidgin_xfer_cancel_remote + pidgin_xfer_cancel_remote, + NULL, + NULL, + NULL, + NULL }; /************************************************************************** diff -r 072e10e53037 -r fbf111436896 pidgin/gtkidle.c --- a/pidgin/gtkidle.c Mon Apr 30 01:08:22 2007 +0000 +++ b/pidgin/gtkidle.c Mon Apr 30 01:18:28 2007 +0000 @@ -120,10 +120,14 @@ static PurpleIdleUiOps ui_ops = { #if defined(USE_SCREENSAVER) || defined(HAVE_IOKIT) - pidgin_get_time_idle + pidgin_get_time_idle, #else + NULL, +#endif /* USE_SCREENSAVER || HAVE_IOKIT */ + NULL, + NULL, + NULL, NULL -#endif /* USE_SCREENSAVER || HAVE_IOKIT */ }; PurpleIdleUiOps * diff -r 072e10e53037 -r fbf111436896 pidgin/gtkmain.c --- a/pidgin/gtkmain.c Mon Apr 30 01:08:22 2007 +0000 +++ b/pidgin/gtkmain.c Mon Apr 30 01:18:28 2007 +0000 @@ -350,7 +350,11 @@ pidgin_prefs_init, debug_init, pidgin_ui_init, - pidgin_quit + pidgin_quit, + NULL, + NULL, + NULL, + NULL }; static PurpleCoreUiOps * diff -r 072e10e53037 -r fbf111436896 pidgin/gtknotify.c --- a/pidgin/gtknotify.c Mon Apr 30 01:08:22 2007 +0000 +++ b/pidgin/gtknotify.c Mon Apr 30 01:18:28 2007 +0000 @@ -1112,7 +1112,11 @@ pidgin_notify_searchresults_new_rows, pidgin_notify_userinfo, pidgin_notify_uri, - pidgin_close_notify + pidgin_close_notify, + NULL, + NULL, + NULL, + NULL }; PurpleNotifyUiOps * diff -r 072e10e53037 -r fbf111436896 pidgin/gtkprivacy.c --- a/pidgin/gtkprivacy.c Mon Apr 30 01:08:22 2007 +0000 +++ b/pidgin/gtkprivacy.c Mon Apr 30 01:18:28 2007 +0000 @@ -644,7 +644,11 @@ pidgin_permit_added_removed, pidgin_permit_added_removed, pidgin_deny_added_removed, - pidgin_deny_added_removed + pidgin_deny_added_removed, + NULL, + NULL, + NULL, + NULL }; PurplePrivacyUiOps * diff -r 072e10e53037 -r fbf111436896 pidgin/gtkrequest.c --- a/pidgin/gtkrequest.c Mon Apr 30 01:08:22 2007 +0000 +++ b/pidgin/gtkrequest.c Mon Apr 30 01:18:28 2007 +0000 @@ -1676,7 +1676,11 @@ pidgin_request_fields, pidgin_request_file, pidgin_close_request, - pidgin_request_folder + pidgin_request_folder, + NULL, + NULL, + NULL, + NULL }; PurpleRequestUiOps * diff -r 072e10e53037 -r fbf111436896 pidgin/gtkroomlist.c --- a/pidgin/gtkroomlist.c Mon Apr 30 01:08:22 2007 +0000 +++ b/pidgin/gtkroomlist.c Mon Apr 30 01:18:28 2007 +0000 @@ -789,7 +789,11 @@ pidgin_roomlist_set_fields, pidgin_roomlist_add_room, pidgin_roomlist_in_progress, - pidgin_roomlist_destroy + pidgin_roomlist_destroy, + NULL, + NULL, + NULL, + NULL }; diff -r 072e10e53037 -r fbf111436896 pidgin/gtksound.c --- a/pidgin/gtksound.c Mon Apr 30 01:08:22 2007 +0000 +++ b/pidgin/gtksound.c Mon Apr 30 01:18:28 2007 +0000 @@ -549,7 +549,11 @@ pidgin_sound_init, pidgin_sound_uninit, pidgin_sound_play_file, - pidgin_sound_play_event + pidgin_sound_play_event, + NULL, + NULL, + NULL, + NULL }; PurpleSoundUiOps * diff -r 072e10e53037 -r fbf111436896 pidgin/gtkwhiteboard.c --- a/pidgin/gtkwhiteboard.c Mon Apr 30 01:08:22 2007 +0000 +++ b/pidgin/gtkwhiteboard.c Mon Apr 30 01:18:28 2007 +0000 @@ -85,7 +85,11 @@ pidgin_whiteboard_set_brush, pidgin_whiteboard_draw_brush_point, pidgin_whiteboard_draw_brush_line, - pidgin_whiteboard_clear + pidgin_whiteboard_clear, + NULL, + NULL, + NULL, + NULL }; /******************************************************************************