From: Piotr S. <ps...@us...> - 2009-09-17 12:05:39
|
Update of /cvsroot/ayttm/ayttm/modules/icq-toc In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv12682/modules/icq-toc Modified Files: icq-toc.c icq.h Log Message: reformatted source code Index: icq-toc.c =================================================================== RCS file: /cvsroot/ayttm/ayttm/modules/icq-toc/icq-toc.c,v retrieving revision 1.51 retrieving revision 1.52 diff -u -r1.51 -r1.52 --- icq-toc.c 27 Jul 2009 16:42:03 -0000 1.51 +++ icq-toc.c 17 Sep 2009 12:04:58 -0000 1.52 @@ -65,7 +65,6 @@ #include "pixmaps/icq_online.xpm" #include "pixmaps/icq_away.xpm" - #define DBG_TOC do_icq_debug int do_icq_debug = 0; @@ -74,14 +73,13 @@ ************************************************************************************/ /* Module defines */ #ifndef USE_POSIX_DLOPEN [...1747 lines suppressed...] @@ -1348,8 +1375,8 @@ icqtoc_new_group = eb_icq_new_group; icqtoc_logged_in = eb_icq_logged_in; icqtoc_async_socket = eb_icq_async_socket; - - sc = g_new0( struct service_callbacks, 1 ); + + sc = g_new0(struct service_callbacks, 1); sc->query_connected = eb_icq_query_connected; sc->login = eb_icq_login; sc->logout = eb_icq_logout; @@ -1383,7 +1410,7 @@ sc->get_color = eb_toc_get_color; sc->get_smileys = eb_default_smileys; - + sc->change_group = eb_icq_change_group; sc->add_group = eb_icq_add_group; sc->del_group = eb_icq_del_group; Index: icq.h =================================================================== RCS file: /cvsroot/ayttm/ayttm/modules/icq-toc/icq.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -r1.1.1.1 -r1.2 --- icq.h 1 Apr 2003 07:24:31 -0000 1.1.1.1 +++ icq.h 17 Sep 2009 12:04:58 -0000 1.2 @@ -29,9 +29,9 @@ #ifndef __EB_icq_H__ #define __EB_icq_H__ - + #include "service.h" -struct service_callbacks * icq_query_callbacks(); +struct service_callbacks *icq_query_callbacks(); #endif /*__icq_H__*/ |