comparison finch/gntui.c @ 23800:4b9b265a8100

Fix compiling with the --disable-vv switch.
author Mike Ruprecht <maiku@soc.pidgin.im>
date Sun, 25 May 2008 04:01:44 +0000
parents 128f6cb57829
children cbe97caec684
comparison
equal deleted inserted replaced
23799:6bf2dfb350c0 23800:4b9b265a8100
90 90
91 /* Roomlist */ 91 /* Roomlist */
92 finch_roomlist_init(); 92 finch_roomlist_init();
93 purple_roomlist_set_ui_ops(finch_roomlist_get_ui_ops()); 93 purple_roomlist_set_ui_ops(finch_roomlist_get_ui_ops());
94 94
95 #ifdef USE_FARSIGHT
95 /* Media */ 96 /* Media */
96 finch_media_manager_init(); 97 finch_media_manager_init();
98 #endif
97 99
98 gnt_register_action(_("Accounts"), finch_accounts_show_all); 100 gnt_register_action(_("Accounts"), finch_accounts_show_all);
99 gnt_register_action(_("Buddy List"), finch_blist_show); 101 gnt_register_action(_("Buddy List"), finch_blist_show);
100 gnt_register_action(_("Buddy Pounces"), finch_pounces_manager_show); 102 gnt_register_action(_("Buddy Pounces"), finch_pounces_manager_show);
101 gnt_register_action(_("Certificates"), finch_certmgr_show); 103 gnt_register_action(_("Certificates"), finch_certmgr_show);
138 purple_xfers_set_ui_ops(NULL); 140 purple_xfers_set_ui_ops(NULL);
139 141
140 finch_roomlist_uninit(); 142 finch_roomlist_uninit();
141 purple_roomlist_set_ui_ops(NULL); 143 purple_roomlist_set_ui_ops(NULL);
142 144
145 #ifdef USE_FARSIGHT
143 finch_media_manager_uninit(); 146 finch_media_manager_uninit();
147 #endif
144 148
145 gnt_quit(); 149 gnt_quit();
146 #endif 150 #endif
147 } 151 }
148 152