mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05:00
correct wrong function prefixes: glog_func -> i_log_func
This commit is contained in:
parent
b5ddc55fe6
commit
aa653aa389
@ -254,8 +254,7 @@ void fe_common_core_deinit(void)
|
|||||||
signal_remove("channel destroyed", (SIGNAL_FUNC) sig_channel_destroyed);
|
signal_remove("channel destroyed", (SIGNAL_FUNC) sig_channel_destroyed);
|
||||||
}
|
}
|
||||||
|
|
||||||
void glog_func(const char *log_domain, GLogLevelFlags log_level,
|
void i_log_func(const char *log_domain, GLogLevelFlags log_level, const char *message)
|
||||||
const char *message)
|
|
||||||
{
|
{
|
||||||
const char *reason;
|
const char *reason;
|
||||||
|
|
||||||
@ -459,7 +458,7 @@ void fe_common_core_finish_init(void)
|
|||||||
signal_add_first("setup changed", (SIGNAL_FUNC) sig_setup_changed);
|
signal_add_first("setup changed", (SIGNAL_FUNC) sig_setup_changed);
|
||||||
|
|
||||||
/* _after_ windows are created.. */
|
/* _after_ windows are created.. */
|
||||||
g_log_set_default_handler((GLogFunc) glog_func, NULL);
|
g_log_set_default_handler((GLogFunc) i_log_func, NULL);
|
||||||
|
|
||||||
if (setup_changed)
|
if (setup_changed)
|
||||||
signal_emit("setup changed", 0);
|
signal_emit("setup changed", 0);
|
||||||
|
Loading…
Reference in New Issue
Block a user