From 9a57c2a95aa30bad44bc76329fb6c524e1e1b642 Mon Sep 17 00:00:00 2001 From: Bilal Elmoussaoui Date: Mon, 18 Sep 2023 15:11:17 +0200 Subject: [PATCH] misc: Drop empty private headers --- lib/mks-keyboard-private.h | 30 ------------------------------ lib/mks-mouse-private.h | 28 ---------------------------- lib/mks-screen.c | 4 ++-- 3 files changed, 2 insertions(+), 60 deletions(-) delete mode 100644 lib/mks-keyboard-private.h delete mode 100644 lib/mks-mouse-private.h diff --git a/lib/mks-keyboard-private.h b/lib/mks-keyboard-private.h deleted file mode 100644 index b8fec7f..0000000 --- a/lib/mks-keyboard-private.h +++ /dev/null @@ -1,30 +0,0 @@ -/* - * mks-keyboard-private.h - * - * Copyright 2023 Christian Hergert - * - * This library is free software; you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as - * published by the Free Software Foundation; either version 2.1 of the - * License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - * - * SPDX-License-Identifier: LGPL-2.1-or-later - */ - -#pragma once - -#include "mks-keyboard.h" - -G_BEGIN_DECLS - - - -G_END_DECLS diff --git a/lib/mks-mouse-private.h b/lib/mks-mouse-private.h deleted file mode 100644 index 92505b6..0000000 --- a/lib/mks-mouse-private.h +++ /dev/null @@ -1,28 +0,0 @@ -/* - * mks-mouse-private.h - * - * Copyright 2023 Christian Hergert - * - * This library is free software; you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as - * published by the Free Software Foundation; either version 2.1 of the - * License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - * - * SPDX-License-Identifier: LGPL-2.1-or-later - */ - -#pragma once - -#include "mks-mouse.h" - -G_BEGIN_DECLS - -G_END_DECLS diff --git a/lib/mks-screen.c b/lib/mks-screen.c index 92b350c..e28ca16 100644 --- a/lib/mks-screen.c +++ b/lib/mks-screen.c @@ -29,8 +29,8 @@ #include "mks-device-private.h" #include "mks-enums.h" #include "mks-qemu.h" -#include "mks-keyboard-private.h" -#include "mks-mouse-private.h" +#include "mks-keyboard.h" +#include "mks-mouse.h" #include "mks-paintable-private.h" #include "mks-screen-attributes-private.h" #include "mks-screen.h"