/soc/2013/ankitkv/gobjectification: 9176f384669b: Removed the li...

Ankit Vani a at nevitus.org
Fri Jun 14 16:27:25 EDT 2013


Changeset: 9176f384669bab3b8d7db7419f74d0a333e031ad
Author:	 Ankit Vani <a at nevitus.org>
Date:	 2013-06-15 01:57 +0530
Branch:	 soc.2013.gobjectification
URL: https://hg.pidgin.im/soc/2013/ankitkv/gobjectification/rev/9176f384669b

Description:

Removed the lines waiting for implementation of cipherlist.
This is not necessary since a GObject-based plugin API will let users subclass PurpleCipher and register the type into the type system.

diffstat:

 libpurple/plugins/signals-test.c |  7 -------
 1 files changed, 0 insertions(+), 7 deletions(-)

diffs (24 lines):

diff --git a/libpurple/plugins/signals-test.c b/libpurple/plugins/signals-test.c
--- a/libpurple/plugins/signals-test.c
+++ b/libpurple/plugins/signals-test.c
@@ -719,7 +719,6 @@ plugin_load(PurplePlugin *plugin)
 	void *conn_handle     = purple_connections_get_handle();
 	void *conv_handle     = purple_conversations_get_handle();
 	void *accounts_handle = purple_accounts_get_handle();
-/*	void *ciphers_handle  = purple_ciphers_get_handle(); */ /* TODO: uncomment after cipherlist is implemented */
 	void *ft_handle       = purple_xfers_get_handle();
 	void *sound_handle    = purple_sounds_get_handle();
 	void *notify_handle   = purple_notify_get_handle();
@@ -831,12 +830,6 @@ plugin_load(PurplePlugin *plugin)
 	purple_signal_connect(conv_handle, "chat-topic-changed",
 						plugin, PURPLE_CALLBACK(chat_topic_changed_cb), NULL);
 
-	/* Ciphers signals */  /* TODO: uncomment after cipherlist is implemented */
-/*	purple_signal_connect(ciphers_handle, "cipher-added",
-						plugin, PURPLE_CALLBACK(cipher_added_cb), NULL);
-	purple_signal_connect(ciphers_handle, "cipher-removed",
-						plugin, PURPLE_CALLBACK(cipher_removed_cb), NULL);*/
-
 	/* Core signals */
 	purple_signal_connect(core_handle, "quitting",
 						plugin, PURPLE_CALLBACK(quitting_cb), NULL);



More information about the Commits mailing list