diff options
author | rbuj <[email protected]> | 2020-08-04 15:53:16 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-08-04 16:39:25 +0200 |
commit | 37e4d38ca3a61eb843d80732a26f29668352433d (patch) | |
tree | 3ecc36df72fcaccc73a56c6713b47afd592d54d8 /src/core/window.c | |
parent | 85a22e754cd1f43e178e4a81c182643d4319bc5b (diff) | |
download | marco-37e4d38ca3a61eb843d80732a26f29668352433d.tar.bz2 marco-37e4d38ca3a61eb843d80732a26f29668352433d.tar.xz |
Remove multiple empty lines
find . \( -name '*.h' -o -name '*.c' \) -exec sed -i 'N;/^\n$/D;P;D;' {} \;
Diffstat (limited to 'src/core/window.c')
-rw-r--r-- | src/core/window.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/core/window.c b/src/core/window.c index b86e6232..55594fe3 100644 --- a/src/core/window.c +++ b/src/core/window.c @@ -56,7 +56,6 @@ static int destroying_windows_disallowed = 0; - static void update_sm_hints (MetaWindow *window); static void update_net_frame_extents (MetaWindow *window); static void recalc_window_type (MetaWindow *window); @@ -91,7 +90,6 @@ static void meta_window_move_resize_internal (MetaWindow *window, static void ensure_mru_position_after (MetaWindow *window, MetaWindow *after_this_one); - static void meta_window_move_resize_now (MetaWindow *window); static void meta_window_unqueue (MetaWindow *window, guint queuebits); @@ -118,10 +116,8 @@ static void meta_window_transform_to_monitor (MetaRectangle *target_rect const MetaRectangle *from_monitor, const MetaRectangle *to_monitor); - static gboolean update_resize_timeout (gpointer data); - static void meta_window_flush_calc_showing (MetaWindow *window); static gboolean queue_calc_showing_func (MetaWindow *window, @@ -245,7 +241,6 @@ meta_window_new (MetaDisplay *display, return NULL; } - meta_error_trap_pop (display, FALSE); meta_display_ungrab (display); @@ -590,7 +585,6 @@ meta_window_new_with_attrs (MetaDisplay *display, meta_display_register_x_window (display, &window->xwindow, window); - /* assign the window to its group, or create a new group if needed */ window->group = NULL; @@ -1180,7 +1174,6 @@ meta_window_free (MetaWindow *window, meta_display_unregister_x_window (window->display, window->xwindow); - meta_error_trap_push (window->display); /* Put back anything we messed up */ @@ -2743,7 +2736,6 @@ meta_window_tile (MetaWindow *window) else meta_window_save_rect(window); - window->tiled = TRUE; /* move_resize with new tiling constraints */ @@ -2885,7 +2877,6 @@ meta_window_unmaximize (MetaWindow *window, meta_compositor_unmaximize_window (window->display->compositor, window); } - void meta_window_move_to_monitor(MetaWindow *window, const MetaXineramaScreenInfo *from_monitor, @@ -2946,8 +2937,6 @@ static void meta_window_transform_to_monitor(MetaRectangle *target_rect, } - - void meta_window_make_above (MetaWindow *window) { @@ -7465,7 +7454,6 @@ update_move (MetaWindow *window, new_y = old.y; } - /* Do any edge resistance/snapping */ meta_window_edge_resistance_for_move (window, old.x, @@ -7493,7 +7481,6 @@ update_move (MetaWindow *window, meta_window_move (window, TRUE, new_x, new_y); } - static MetaTileMode calculate_tiling_mode(int x, int y, MetaWindow *window, @@ -7535,7 +7522,6 @@ static MetaTileMode calculate_tiling_mode(int x, } - static gboolean update_resize_timeout (gpointer data) { |