Replace _ with - in source file names

This commit is contained in:
tokyo4j 2024-05-22 09:56:16 +09:00 committed by Johan Malm
parent 48742163fd
commit 23b96ad2a6
29 changed files with 28 additions and 28 deletions

View file

@ -12,7 +12,7 @@
#include "config/touch.h" #include "config/touch.h"
#include "config/tablet.h" #include "config/tablet.h"
#include "config/libinput.h" #include "config/libinput.h"
#include "resize_indicator.h" #include "resize-indicator.h"
#include "theme.h" #include "theme.h"
enum view_placement_policy { enum view_placement_policy {

View file

@ -4,7 +4,7 @@
#include <sys/resource.h> #include <sys/resource.h>
#include <wlr/util/log.h> #include <wlr/util/log.h>
#include "common/fd_util.h" #include "common/fd-util.h"
static struct rlimit original_nofile_rlimit = {0}; static struct rlimit original_nofile_rlimit = {0};

View file

@ -1,7 +1,7 @@
labwc_sources += files( labwc_sources += files(
'buf.c', 'buf.c',
'dir.c', 'dir.c',
'fd_util.c', 'fd-util.c',
'file-helpers.c', 'file-helpers.c',
'font.c', 'font.c',
'grab-file.c', 'grab-file.c',
@ -11,8 +11,8 @@ labwc_sources += files(
'nodename.c', 'nodename.c',
'parse-bool.c', 'parse-bool.c',
'parse-double.c', 'parse-double.c',
'scaled_font_buffer.c', 'scaled-font-buffer.c',
'scaled_scene_buffer.c', 'scaled-scene-buffer.c',
'scene-helpers.c', 'scene-helpers.c',
'surface-helpers.c', 'surface-helpers.c',
'spawn.c', 'spawn.c',

View file

@ -8,8 +8,8 @@
#include "buffer.h" #include "buffer.h"
#include "common/font.h" #include "common/font.h"
#include "common/mem.h" #include "common/mem.h"
#include "common/scaled_scene_buffer.h" #include "common/scaled-scene-buffer.h"
#include "common/scaled_font_buffer.h" #include "common/scaled-font-buffer.h"
static struct lab_data_buffer * static struct lab_data_buffer *
_create_buffer(struct scaled_scene_buffer *scaled_buffer, double scale) _create_buffer(struct scaled_scene_buffer *scaled_buffer, double scale)

View file

@ -9,7 +9,7 @@
#include <wlr/util/log.h> #include <wlr/util/log.h>
#include "buffer.h" #include "buffer.h"
#include "common/mem.h" #include "common/mem.h"
#include "common/scaled_scene_buffer.h" #include "common/scaled-scene-buffer.h"
/** /**
* TODO * TODO

View file

@ -10,7 +10,7 @@
#include <unistd.h> #include <unistd.h>
#include <wlr/util/log.h> #include <wlr/util/log.h>
#include "common/spawn.h" #include "common/spawn.h"
#include "common/fd_util.h" #include "common/fd-util.h"
static void static void
reset_signals_and_limits(void) reset_signals_and_limits(void)

View file

@ -7,7 +7,7 @@
#include "common/parse-double.h" #include "common/parse-double.h"
#include "config/tablet.h" #include "config/tablet.h"
#include "config/rcxml.h" #include "config/rcxml.h"
#include "input/tablet_pad.h" #include "input/tablet-pad.h"
double double
tablet_get_dbl_if_positive(const char *content, const char *name) tablet_get_dbl_if_positive(const char *content, const char *name)

View file

@ -1,7 +1,7 @@
labwc_sources += files( labwc_sources += files(
'cursor.c', 'cursor.c',
'tablet.c', 'tablet.c',
'tablet_pad.c', 'tablet-pad.c',
'gestures.c', 'gestures.c',
'input.c', 'input.c',
'keyboard.c', 'keyboard.c',

View file

@ -7,7 +7,7 @@
#include "common/mem.h" #include "common/mem.h"
#include "config/rcxml.h" #include "config/rcxml.h"
#include "input/cursor.h" #include "input/cursor.h"
#include "input/tablet_pad.h" #include "input/tablet-pad.h"
static void static void
handle_button(struct wl_listener *listener, void *data) handle_button(struct wl_listener *listener, void *data)

View file

@ -3,7 +3,7 @@
#include "input/keyboard.h" #include "input/keyboard.h"
#include "labwc.h" #include "labwc.h"
#include "regions.h" #include "regions.h"
#include "resize_indicator.h" #include "resize-indicator.h"
#include "snap.h" #include "snap.h"
#include "view.h" #include "view.h"
#include "window-rules.h" #include "window-rules.h"

View file

@ -4,7 +4,7 @@
#include <string.h> #include <string.h>
#include <unistd.h> #include <unistd.h>
#include "common/dir.h" #include "common/dir.h"
#include "common/fd_util.h" #include "common/fd-util.h"
#include "common/font.h" #include "common/font.h"
#include "common/mem.h" #include "common/mem.h"
#include "common/spawn.h" #include "common/spawn.h"

View file

@ -17,7 +17,7 @@
#include "common/list.h" #include "common/list.h"
#include "common/mem.h" #include "common/mem.h"
#include "common/nodename.h" #include "common/nodename.h"
#include "common/scaled_font_buffer.h" #include "common/scaled-font-buffer.h"
#include "common/scene-helpers.h" #include "common/scene-helpers.h"
#include "common/spawn.h" #include "common/spawn.h"
#include "common/string-helpers.h" #include "common/string-helpers.h"

View file

@ -13,7 +13,7 @@ labwc_sources = files(
'main.c', 'main.c',
'node.c', 'node.c',
'osd.c', 'osd.c',
'osd_field.c', 'osd-field.c',
'output.c', 'output.c',
'output-virtual.c', 'output-virtual.c',
'overlay.c', 'overlay.c',

View file

@ -11,7 +11,7 @@
#include "common/mem.h" #include "common/mem.h"
#include "input/ime.h" #include "input/ime.h"
#include "input/tablet.h" #include "input/tablet.h"
#include "input/tablet_pad.h" #include "input/tablet-pad.h"
#include "input/input.h" #include "input/input.h"
#include "input/keyboard.h" #include "input/keyboard.h"
#include "input/key-state.h" #include "input/key-state.h"

View file

@ -30,7 +30,7 @@
#include "menu/menu.h" #include "menu/menu.h"
#include "output-virtual.h" #include "output-virtual.h"
#include "regions.h" #include "regions.h"
#include "resize_indicator.h" #include "resize-indicator.h"
#include "theme.h" #include "theme.h"
#include "view.h" #include "view.h"
#include "workspaces.h" #include "workspaces.h"

View file

@ -1,9 +1,9 @@
labwc_sources += files( labwc_sources += files(
'resize_indicator.c', 'resize-indicator.c',
'ssd.c', 'ssd.c',
'ssd_part.c', 'ssd-part.c',
'ssd_titlebar.c', 'ssd-titlebar.c',
'ssd_border.c', 'ssd-border.c',
'ssd_extents.c', 'ssd-extents.c',
'ssd_shadow.c', 'ssd-shadow.c',
) )

View file

@ -4,9 +4,9 @@
#include <wlr/util/box.h> #include <wlr/util/box.h>
#include <wlr/util/log.h> #include <wlr/util/log.h>
#include "common/macros.h" #include "common/macros.h"
#include "common/scaled_font_buffer.h" #include "common/scaled-font-buffer.h"
#include "labwc.h" #include "labwc.h"
#include "resize_indicator.h" #include "resize-indicator.h"
#include "view.h" #include "view.h"
static void static void

View file

@ -5,7 +5,7 @@
#include <string.h> #include <string.h>
#include "buffer.h" #include "buffer.h"
#include "common/mem.h" #include "common/mem.h"
#include "common/scaled_font_buffer.h" #include "common/scaled-font-buffer.h"
#include "common/scene-helpers.h" #include "common/scene-helpers.h"
#include "common/string-helpers.h" #include "common/string-helpers.h"
#include "labwc.h" #include "labwc.h"

View file

@ -13,7 +13,7 @@
#include "osd.h" #include "osd.h"
#include "placement.h" #include "placement.h"
#include "regions.h" #include "regions.h"
#include "resize_indicator.h" #include "resize-indicator.h"
#include "snap-constraints.h" #include "snap-constraints.h"
#include "snap.h" #include "snap.h"
#include "ssd.h" #include "ssd.h"