From 7adf0be146d7b8aa63cdb35f92a4f66e3633252e Mon Sep 17 00:00:00 2001 From: lbonn Date: Wed, 24 Aug 2022 00:35:57 +0200 Subject: [PATCH] Fix CI --- .github/actions/meson/action.yml | 10 ---------- source/xcb/view.c | 13 ++++++------- 2 files changed, 6 insertions(+), 17 deletions(-) diff --git a/.github/actions/meson/action.yml b/.github/actions/meson/action.yml index 8bf68c13..9228c3c6 100644 --- a/.github/actions/meson/action.yml +++ b/.github/actions/meson/action.yml @@ -26,16 +26,6 @@ runs: - id: build run: ninja -C builddir shell: bash - - id: dist - run: ninja -C builddir dist - shell: bash - id: test run: ninja -C builddir test shell: bash - - id: doxy - run: ninja -C builddir doc/html > doxygen.log 2>&1 - shell: bash - - id: doxycheck - uses: ./.github/actions/doxycheck - with: - logfile: doxygen.log diff --git a/source/xcb/view.c b/source/xcb/view.c index f5700e17..4fca74a3 100644 --- a/source/xcb/view.c +++ b/source/xcb/view.c @@ -69,13 +69,6 @@ #include "xcb.h" -/** - * @param state The handle to the view - * @param qr Indicate if queue_redraw should be called on changes. - * - * Update the state of the view. This involves filter state. - */ - static int xcb_rofi_view_calculate_window_height(RofiViewState *state); static void xcb_rofi_view_set_window_title(const char *title); @@ -248,6 +241,12 @@ static gboolean xcb_rofi_view_repaint(G_GNUC_UNUSED void *data) { return (bench_update() == TRUE) ? G_SOURCE_CONTINUE : G_SOURCE_REMOVE; } +/** + * @param state The handle to the view + * @param qr Indicate if queue_redraw should be called on changes. + * + * Update the state of the view. This involves filter state. + */ static void xcb_rofi_view_update(RofiViewState *state, gboolean qr) { if (!widget_need_redraw(WIDGET(state->main_window))) { return;