mirror of
https://github.com/weechat/weechat.git
synced 2026-06-30 14:56:39 +02:00
core: fix typo: refreshs -> refreshes
This commit is contained in:
@@ -313,11 +313,11 @@ gui_main_debug_libs ()
|
||||
}
|
||||
|
||||
/*
|
||||
* Refreshs for windows, buffers, bars.
|
||||
* Refreshes for windows, buffers, bars.
|
||||
*/
|
||||
|
||||
void
|
||||
gui_main_refreshs ()
|
||||
gui_main_refreshes ()
|
||||
{
|
||||
struct t_gui_window *ptr_win;
|
||||
struct t_gui_buffer *ptr_buffer;
|
||||
@@ -461,9 +461,9 @@ gui_main_loop ()
|
||||
send_signal_sigwinch = 1;
|
||||
}
|
||||
|
||||
gui_main_refreshs ();
|
||||
gui_main_refreshes ();
|
||||
if (gui_window_refresh_needed && !gui_window_bare_display)
|
||||
gui_main_refreshs ();
|
||||
gui_main_refreshes ();
|
||||
|
||||
if (send_signal_sigwinch)
|
||||
{
|
||||
@@ -502,14 +502,14 @@ gui_main_end (int clean_exit)
|
||||
if (clean_exit)
|
||||
{
|
||||
/*
|
||||
* final refreshs, to see messages just before exiting
|
||||
* final refreshes, to see messages just before exiting
|
||||
* (if we are upgrading, don't refresh anything!)
|
||||
*/
|
||||
if (!weechat_upgrading)
|
||||
{
|
||||
gui_main_refreshs ();
|
||||
gui_main_refreshes ();
|
||||
if (gui_window_refresh_needed)
|
||||
gui_main_refreshs ();
|
||||
gui_main_refreshes ();
|
||||
}
|
||||
|
||||
/* disable bracketed paste mode */
|
||||
|
||||
@@ -3182,8 +3182,8 @@ irc_config_init ()
|
||||
irc_config_network_lag_refresh_interval = weechat_config_new_option (
|
||||
irc_config_file, ptr_section,
|
||||
"lag_refresh_interval", "integer",
|
||||
N_("interval between two refreshs of lag item, when lag is increasing "
|
||||
"(in seconds)"),
|
||||
N_("interval between two refreshes of lag item, when lag is "
|
||||
"increasing (in seconds)"),
|
||||
NULL, 1, 3600, "1", NULL, 0,
|
||||
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
||||
irc_config_network_notify_check_ison = weechat_config_new_option (
|
||||
|
||||
Reference in New Issue
Block a user