mirror of
https://github.com/swaywm/sway.git
synced 2026-03-20 05:34:28 -04:00
Make handle_destroy and output_repaint_timer_handler static
This commit is contained in:
parent
476773dd32
commit
c0811fcf87
3 changed files with 2 additions and 4 deletions
|
|
@ -507,7 +507,7 @@ static bool scan_out_fullscreen_view(struct sway_output *output,
|
|||
return wlr_output_commit(wlr_output);
|
||||
}
|
||||
|
||||
int output_repaint_timer_handler(void *data) {
|
||||
static int output_repaint_timer_handler(void *data) {
|
||||
struct sway_output *output = data;
|
||||
if (output->wlr_output == NULL) {
|
||||
return 0;
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
#include "sway/server.h"
|
||||
#include "sway/surface.h"
|
||||
|
||||
void handle_destroy(struct wl_listener *listener, void *data) {
|
||||
static void handle_destroy(struct wl_listener *listener, void *data) {
|
||||
struct sway_surface *surface = wl_container_of(listener, surface, destroy);
|
||||
|
||||
surface->wlr_surface->data = NULL;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue