changeset 16681:fbf111436896

Patch from John 'rekkanoryo' Bailey to add the padding struct members in pidgin
author Gary Kramlich <grim@reaperworld.com>
date Mon, 30 Apr 2007 01:18:28 +0000
parents 072e10e53037
children 589cc5757148
files pidgin/gtkaccount.c pidgin/gtkblist.c pidgin/gtkconn.c pidgin/gtkconv.c pidgin/gtkdebug.c pidgin/gtkeventloop.c pidgin/gtkft.c pidgin/gtkidle.c pidgin/gtkmain.c pidgin/gtknotify.c pidgin/gtkprivacy.c pidgin/gtkrequest.c pidgin/gtkroomlist.c pidgin/gtksound.c pidgin/gtkwhiteboard.c
diffstat 15 files changed, 75 insertions(+), 15 deletions(-) [+]
line wrap: on
line diff
--- 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 *
--- 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
 };
 
 
--- 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 *
--- 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 *
--- 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 *
--- 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 *
--- 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
 };
 
 /**************************************************************************
--- 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 *
--- 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 *
--- 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 *
--- 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 *
--- 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 *
--- 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
 };
 
 
--- 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 *
--- 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
 };
 
 /******************************************************************************