diff options
author | Gary Kramlich <grim@reaperworld.com> | 2007-04-30 01:18:28 +0000 |
---|---|---|
committer | Gary Kramlich <grim@reaperworld.com> | 2007-04-30 01:18:28 +0000 |
commit | b83d317a78631d9477b036be2e244af4bea554b6 (patch) | |
tree | b382907ece49b30b14b3637fd3b831e3fd394e53 | |
parent | 85dede3aef1a0c592d36ed0292b94cc2915b30fc (diff) | |
download | pidgin-padding.tar.gz |
Patch from John 'rekkanoryo' Bailey to add the padding struct members in pidginpadding
-rw-r--r-- | pidgin/gtkaccount.c | 6 | ||||
-rw-r--r-- | pidgin/gtkblist.c | 6 | ||||
-rw-r--r-- | pidgin/gtkconn.c | 6 | ||||
-rw-r--r-- | pidgin/gtkconv.c | 4 | ||||
-rw-r--r-- | pidgin/gtkdebug.c | 6 | ||||
-rw-r--r-- | pidgin/gtkeventloop.c | 6 | ||||
-rw-r--r-- | pidgin/gtkft.c | 6 | ||||
-rw-r--r-- | pidgin/gtkidle.c | 8 | ||||
-rw-r--r-- | pidgin/gtkmain.c | 6 | ||||
-rw-r--r-- | pidgin/gtknotify.c | 6 | ||||
-rw-r--r-- | pidgin/gtkprivacy.c | 6 | ||||
-rw-r--r-- | pidgin/gtkrequest.c | 6 | ||||
-rw-r--r-- | pidgin/gtkroomlist.c | 6 | ||||
-rw-r--r-- | pidgin/gtksound.c | 6 | ||||
-rw-r--r-- | pidgin/gtkwhiteboard.c | 6 |
15 files changed, 75 insertions, 15 deletions
diff --git a/pidgin/gtkaccount.c b/pidgin/gtkaccount.c index 7028d46120..212c8f45ef 100644 --- a/pidgin/gtkaccount.c +++ b/pidgin/gtkaccount.c @@ -2571,7 +2571,11 @@ static PurpleAccountUiOps ui_ops = NULL, pidgin_accounts_request_add, pidgin_accounts_request_authorization, - pidgin_accounts_request_close + pidgin_accounts_request_close, + NULL, + NULL, + NULL, + NULL }; PurpleAccountUiOps * diff --git a/pidgin/gtkblist.c b/pidgin/gtkblist.c index 03bcf5a4df..7b8adb8040 100644 --- a/pidgin/gtkblist.c +++ b/pidgin/gtkblist.c @@ -5865,7 +5865,11 @@ static PurpleBlistUiOps blist_ui_ops = 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 --git a/pidgin/gtkconn.c b/pidgin/gtkconn.c index f01581b827..a8b9d49488 100644 --- a/pidgin/gtkconn.c +++ b/pidgin/gtkconn.c @@ -248,7 +248,11 @@ static PurpleConnectionUiOps conn_ui_ops = 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 --git a/pidgin/gtkconv.c b/pidgin/gtkconv.c index 7150454aea..2545c7fff9 100644 --- a/pidgin/gtkconv.c +++ b/pidgin/gtkconv.c @@ -6161,6 +6161,10 @@ static PurpleConversationUiOps conversation_ui_ops = 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 --git a/pidgin/gtkdebug.c b/pidgin/gtkdebug.c index 93452aa893..e9d65dec3f 100644 --- a/pidgin/gtkdebug.c +++ b/pidgin/gtkdebug.c @@ -1116,7 +1116,11 @@ pidgin_debug_is_enabled(PurpleDebugLevel level, const char *category) static PurpleDebugUiOps ops = { pidgin_debug_print, - pidgin_debug_is_enabled + pidgin_debug_is_enabled, + NULL, + NULL, + NULL, + NULL }; PurpleDebugUiOps * diff --git a/pidgin/gtkeventloop.c b/pidgin/gtkeventloop.c index 662d6bb3f3..d8b0623bcc 100644 --- a/pidgin/gtkeventloop.c +++ b/pidgin/gtkeventloop.c @@ -119,7 +119,11 @@ static PurpleEventLoopUiOps eventloop_ops = g_source_remove, pidgin_input_add, g_source_remove, - NULL /* input_get_error */ + NULL, /* input_get_error */ + NULL, + NULL, + NULL, + NULL }; PurpleEventLoopUiOps * diff --git a/pidgin/gtkft.c b/pidgin/gtkft.c index f41151bca1..c46ba974f0 100644 --- a/pidgin/gtkft.c +++ b/pidgin/gtkft.c @@ -1222,7 +1222,11 @@ static PurpleXferUiOps ops = 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 --git a/pidgin/gtkidle.c b/pidgin/gtkidle.c index 5e7c35c7f1..88ff241cda 100644 --- a/pidgin/gtkidle.c +++ b/pidgin/gtkidle.c @@ -120,10 +120,14 @@ pidgin_get_time_idle() static PurpleIdleUiOps ui_ops = { #if defined(USE_SCREENSAVER) || defined(HAVE_IOKIT) - pidgin_get_time_idle + pidgin_get_time_idle, #else - NULL + NULL, #endif /* USE_SCREENSAVER || HAVE_IOKIT */ + NULL, + NULL, + NULL, + NULL }; PurpleIdleUiOps * diff --git a/pidgin/gtkmain.c b/pidgin/gtkmain.c index cdedfdeeff..9b6a1f4cd5 100644 --- a/pidgin/gtkmain.c +++ b/pidgin/gtkmain.c @@ -350,7 +350,11 @@ static PurpleCoreUiOps core_ops = pidgin_prefs_init, debug_init, pidgin_ui_init, - pidgin_quit + pidgin_quit, + NULL, + NULL, + NULL, + NULL }; static PurpleCoreUiOps * diff --git a/pidgin/gtknotify.c b/pidgin/gtknotify.c index b6497d4128..d8697142af 100644 --- a/pidgin/gtknotify.c +++ b/pidgin/gtknotify.c @@ -1112,7 +1112,11 @@ static PurpleNotifyUiOps ops = pidgin_notify_searchresults_new_rows, pidgin_notify_userinfo, pidgin_notify_uri, - pidgin_close_notify + pidgin_close_notify, + NULL, + NULL, + NULL, + NULL }; PurpleNotifyUiOps * diff --git a/pidgin/gtkprivacy.c b/pidgin/gtkprivacy.c index 6cc424578c..67d4500bcb 100644 --- a/pidgin/gtkprivacy.c +++ b/pidgin/gtkprivacy.c @@ -644,7 +644,11 @@ static PurplePrivacyUiOps privacy_ops = 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 --git a/pidgin/gtkrequest.c b/pidgin/gtkrequest.c index 4b09d692c8..9eb1125316 100644 --- a/pidgin/gtkrequest.c +++ b/pidgin/gtkrequest.c @@ -1676,7 +1676,11 @@ static PurpleRequestUiOps ops = pidgin_request_fields, pidgin_request_file, pidgin_close_request, - pidgin_request_folder + pidgin_request_folder, + NULL, + NULL, + NULL, + NULL }; PurpleRequestUiOps * diff --git a/pidgin/gtkroomlist.c b/pidgin/gtkroomlist.c index 95f287b6ec..a22a162a19 100644 --- a/pidgin/gtkroomlist.c +++ b/pidgin/gtkroomlist.c @@ -789,7 +789,11 @@ static PurpleRoomlistUiOps ops = { pidgin_roomlist_set_fields, pidgin_roomlist_add_room, pidgin_roomlist_in_progress, - pidgin_roomlist_destroy + pidgin_roomlist_destroy, + NULL, + NULL, + NULL, + NULL }; diff --git a/pidgin/gtksound.c b/pidgin/gtksound.c index 11ca0a1f2f..c81e93f9fa 100644 --- a/pidgin/gtksound.c +++ b/pidgin/gtksound.c @@ -549,7 +549,11 @@ static PurpleSoundUiOps sound_ui_ops = pidgin_sound_init, pidgin_sound_uninit, pidgin_sound_play_file, - pidgin_sound_play_event + pidgin_sound_play_event, + NULL, + NULL, + NULL, + NULL }; PurpleSoundUiOps * diff --git a/pidgin/gtkwhiteboard.c b/pidgin/gtkwhiteboard.c index 1ff5806eaf..d38caf0752 100644 --- a/pidgin/gtkwhiteboard.c +++ b/pidgin/gtkwhiteboard.c @@ -85,7 +85,11 @@ static PurpleWhiteboardUiOps ui_ops = pidgin_whiteboard_set_brush, pidgin_whiteboard_draw_brush_point, pidgin_whiteboard_draw_brush_line, - pidgin_whiteboard_clear + pidgin_whiteboard_clear, + NULL, + NULL, + NULL, + NULL }; /****************************************************************************** |