summaryrefslogtreecommitdiff
path: root/src/gui/gcal-search-hit-row.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/gcal-search-hit-row.h')
-rw-r--r--src/gui/gcal-search-hit-row.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/gui/gcal-search-hit-row.h b/src/gui/gcal-search-hit-row.h
deleted file mode 100644
index 947c964c..00000000
--- a/src/gui/gcal-search-hit-row.h
+++ /dev/null
@@ -1,36 +0,0 @@
-/* gcal-search-hit-row.h
- *
- * Copyright 2022 Georges Basile Stavracas Neto <georges.stavracas@gmail.com>
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program 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 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 <http://www.gnu.org/licenses/>.
- *
- * SPDX-License-Identifier: GPL-3.0-or-later
- */
-
-#pragma once
-
-#include <gtk/gtk.h>
-
-#include "gcal-search-hit.h"
-
-G_BEGIN_DECLS
-
-#define GCAL_TYPE_SEARCH_HIT_ROW (gcal_search_hit_row_get_type())
-G_DECLARE_FINAL_TYPE (GcalSearchHitRow, gcal_search_hit_row, GCAL, SEARCH_HIT_ROW, GtkListBoxRow)
-
-GtkWidget * gcal_search_hit_row_new (GcalSearchHit *search_hit);
-
-GcalSearchHit * gcal_search_hit_row_get_search_hit (GcalSearchHitRow *self);
-
-G_END_DECLS