summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
Diffstat (limited to 'desktop')
-rw-r--r--desktop/Makefile2
-rw-r--r--desktop/sslcert.c38
-rw-r--r--desktop/sslcert.h26
3 files changed, 1 insertions, 65 deletions
diff --git a/desktop/Makefile b/desktop/Makefile
index 162b7364c..03e9591c0 100644
--- a/desktop/Makefile
+++ b/desktop/Makefile
@@ -2,7 +2,7 @@
S_DESKTOP := cookie_manager.c cookies_old.c history_global_core.c hotlist_old.c knockout.c \
mouse.c plot_style.c print.c search.c searchweb.c \
- scrollbar.c sslcert.c sslcert_viewer.c textarea.c thumbnail.c tree.c \
+ scrollbar.c sslcert_viewer.c textarea.c thumbnail.c tree.c \
tree_url_node.c version.c system_colour.c global_history.c treeview.c
S_DESKTOP := $(addprefix desktop/,$(S_DESKTOP))
diff --git a/desktop/sslcert.c b/desktop/sslcert.c
deleted file mode 100644
index e9c4b9c5a..000000000
--- a/desktop/sslcert.c
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- * Copyright 2009 Paul Blokus <paul_pl@users.sourceforge.net>
- *
- * This file is part of NetSurf, http://www.netsurf-browser.org/
- *
- * NetSurf 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; version 2 of the License.
- *
- * NetSurf 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/>.
- */
-
-/** \file
- * SSL Certificate verification UI (implementation)
- */
-
-
-#include "desktop/sslcert.h"
-#include "desktop/tree.h"
-
-/**
- * Get flags with which the sslcert tree should be created;
- *
- * \return the flags
- */
-unsigned int sslcert_get_tree_flags(void)
-{
- return TREE_SSLCERT;
-}
-
-
-
diff --git a/desktop/sslcert.h b/desktop/sslcert.h
deleted file mode 100644
index d15d06a82..000000000
--- a/desktop/sslcert.h
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- * Copyright 2009 Paul Blokus <paul_pl@users.sourceforge.net>
- *
- * This file is part of NetSurf, http://www.netsurf-browser.org/
- *
- * NetSurf 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; version 2 of the License.
- *
- * NetSurf 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/>.
- */
-
-
-#ifndef _NETSURF_DESKTOP_SSLCERT_H_
-#define _NETSURF_DESKTOP_SSLCERT_H_
-
-unsigned int sslcert_get_tree_flags(void);
-
-
-#endif