mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 04:43:34 +02:00
Use formats instead of g_warning
Add some copyright headers here and there too.
This commit is contained in:
parent
06040fb30b
commit
203c00938a
9 changed files with 116 additions and 11 deletions
|
|
@ -69,6 +69,9 @@ void fe_netjoin_deinit(void);
|
|||
void fe_whois_init(void);
|
||||
void fe_whois_deinit(void);
|
||||
|
||||
void fe_sasl_init(void);
|
||||
void fe_sasl_deinit(void);
|
||||
|
||||
void irc_completion_init(void);
|
||||
void irc_completion_deinit(void);
|
||||
|
||||
|
|
@ -91,6 +94,7 @@ void fe_common_irc_init(void)
|
|||
fe_netsplit_init();
|
||||
fe_netjoin_init();
|
||||
fe_whois_init();
|
||||
fe_sasl_init();
|
||||
irc_completion_init();
|
||||
|
||||
settings_check();
|
||||
|
|
@ -116,6 +120,7 @@ void fe_common_irc_deinit(void)
|
|||
fe_netsplit_deinit();
|
||||
fe_netjoin_deinit();
|
||||
fe_whois_deinit();
|
||||
fe_sasl_deinit();
|
||||
irc_completion_deinit();
|
||||
|
||||
theme_unregister();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue