mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05:00
gui-windows: make the wcwidth_impl global var into static
This commit is contained in:
parent
071ada830b
commit
92804cb1aa
@ -31,7 +31,7 @@
|
|||||||
#include "gui-printtext.h"
|
#include "gui-printtext.h"
|
||||||
|
|
||||||
static int window_create_override;
|
static int window_create_override;
|
||||||
int wcwidth_impl;
|
static int wcwidth_impl;
|
||||||
|
|
||||||
static GUI_WINDOW_REC *gui_window_init(WINDOW_REC *window,
|
static GUI_WINDOW_REC *gui_window_init(WINDOW_REC *window,
|
||||||
MAIN_WINDOW_REC *parent)
|
MAIN_WINDOW_REC *parent)
|
||||||
@ -205,7 +205,8 @@ void gui_windows_reset_settings(void)
|
|||||||
{
|
{
|
||||||
GSList *tmp;
|
GSList *tmp;
|
||||||
int old_wcwidth_impl = wcwidth_impl;
|
int old_wcwidth_impl = wcwidth_impl;
|
||||||
wcwidth_impl = settings_get_choice("wcwidth_implementation");
|
|
||||||
|
wcwidth_impl = settings_get_choice("wcwidth_implementation");
|
||||||
|
|
||||||
for (tmp = windows; tmp != NULL; tmp = tmp->next) {
|
for (tmp = windows; tmp != NULL; tmp = tmp->next) {
|
||||||
WINDOW_REC *rec = tmp->data;
|
WINDOW_REC *rec = tmp->data;
|
||||||
|
Loading…
Reference in New Issue
Block a user