mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-10 09:58:01 +00:00
Add a few missing 'static'.
This commit is contained in:
parent
af278ac870
commit
b63a66cd2c
@ -310,18 +310,18 @@ static bool win_seat_is_utf8(Seat *seat)
|
|||||||
return is_utf8();
|
return is_utf8();
|
||||||
}
|
}
|
||||||
|
|
||||||
char *win_seat_get_ttymode(Seat *seat, const char *mode)
|
static char *win_seat_get_ttymode(Seat *seat, const char *mode)
|
||||||
{
|
{
|
||||||
return term_get_ttymode(term, mode);
|
return term_get_ttymode(term, mode);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool win_seat_get_window_pixel_size(Seat *seat, int *x, int *y)
|
static bool win_seat_get_window_pixel_size(Seat *seat, int *x, int *y)
|
||||||
{
|
{
|
||||||
win_get_pixels(wintw, x, y);
|
win_get_pixels(wintw, x, y);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
StripCtrlChars *win_seat_stripctrl_new(
|
static StripCtrlChars *win_seat_stripctrl_new(
|
||||||
Seat *seat, BinarySink *bs_out, SeatInteractionContext sic)
|
Seat *seat, BinarySink *bs_out, SeatInteractionContext sic)
|
||||||
{
|
{
|
||||||
return stripctrl_new_term(bs_out, false, 0, term);
|
return stripctrl_new_term(bs_out, false, 0, term);
|
||||||
|
Loading…
Reference in New Issue
Block a user