summaryrefslogtreecommitdiff
path: root/src/bookmarks/ephy-topics-palette.h
diff options
context:
space:
mode:
authorMichael Catanzaro <mcatanzaro@gnome.org>2016-10-07 19:40:11 -0500
committerMichael Catanzaro <mcatanzaro@gnome.org>2016-10-07 19:40:11 -0500
commit4cc95e59d3f2504f831ea9f942678b8b576e52d7 (patch)
treeb8c7fd0b72fa360bf65674634964256bbff6fcfb /src/bookmarks/ephy-topics-palette.h
parente54cb1c7e97ddca58977a8ee01a138ff57ba6f2c (diff)
downloadepiphany-4cc95e59d3f2504f831ea9f942678b8b576e52d7.tar.gz
Remove files inadvertently added in previous commit
Diffstat (limited to 'src/bookmarks/ephy-topics-palette.h')
-rw-r--r--src/bookmarks/ephy-topics-palette.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/src/bookmarks/ephy-topics-palette.h b/src/bookmarks/ephy-topics-palette.h
deleted file mode 100644
index 36d115717..000000000
--- a/src/bookmarks/ephy-topics-palette.h
+++ /dev/null
@@ -1,44 +0,0 @@
-/* -*- Mode: C; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
-/*
- * Copyright © 2002 Marco Pesenti Gritti <mpeseng@tin.it>
- *
- * This file is part of Epiphany.
- *
- * Epiphany 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.
- *
- * Epiphany 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 Epiphany. If not, see <http://www.gnu.org/licenses/>.
- */
-
-#pragma once
-
-#include "ephy-bookmarks.h"
-#include <gtk/gtk.h>
-
-G_BEGIN_DECLS
-
-#define EPHY_TYPE_TOPICS_PALETTE (ephy_topics_palette_get_type ())
-G_DECLARE_FINAL_TYPE (EphyTopicsPalette, ephy_topics_palette, EPHY, TOPICS_PALETTE, GtkListStore);
-
-enum
-{
- EPHY_TOPICS_PALETTE_COLUMN_TITLE,
- EPHY_TOPICS_PALETTE_COLUMN_NODE,
- EPHY_TOPICS_PALETTE_COLUMN_SELECTED,
- EPHY_TOPICS_PALETTE_COLUMNS
-};
-
-EphyTopicsPalette *ephy_topics_palette_new (EphyBookmarks *bookmarks,
- EphyNode *bookmark);
-
-void ephy_topics_palette_update_list (EphyTopicsPalette *self);
-
-G_END_DECLS