From eb63d83a99fb10c1eb0ff12a403d6075164e6a04 Mon Sep 17 00:00:00 2001 From: lbonn Date: Fri, 29 May 2020 23:46:44 +0200 Subject: [PATCH] Start moving xcb-specific stuff to their own directory --- meson.build | 4 ++-- source/{xcb.c => xcb/display.c} | 0 source/{ => xcb}/view.c | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename source/{xcb.c => xcb/display.c} (100%) rename source/{ => xcb}/view.c (100%) diff --git a/meson.build b/meson.build index bec08967..08e58edf 100644 --- a/meson.build +++ b/meson.build @@ -135,7 +135,6 @@ bison = generator(find_program('bison'), rofi_sources = files( 'source/rofi.c', - 'source/view.c', 'source/mode.c', 'source/keyb.c', 'config/config.c', @@ -154,7 +153,6 @@ rofi_sources = files( 'source/widgets/scrollbar.c', 'source/xrmoptions.c', 'source/rofi-types.c', - 'source/xcb.c', 'source/dialogs/run.c', 'source/dialogs/ssh.c', 'source/dialogs/drun.c', @@ -163,6 +161,8 @@ rofi_sources = files( 'source/dialogs/window.c', 'source/dialogs/script.c', 'source/dialogs/help-keys.c', + 'source/xcb/display.c', + 'source/xcb/view.c', 'include/display.h', 'include/xcb.h', 'include/xcb-internal.h', diff --git a/source/xcb.c b/source/xcb/display.c similarity index 100% rename from source/xcb.c rename to source/xcb/display.c diff --git a/source/view.c b/source/xcb/view.c similarity index 100% rename from source/view.c rename to source/xcb/view.c