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

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

View file

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

View file

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

View file

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

View file

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