summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntónio Fernandes <antoniof@gnome.org>2022-07-09 17:48:05 +0100
committerAntónio Fernandes <antoniojpfernandes@gmail.com>2022-07-09 17:56:38 +0000
commit9c56883cbd7b92381a5e5bbb852c3ea657239118 (patch)
tree27e3e838e4a663f7a67e742d3fea9f2c5e2504c7
parent801e877d6e9b75196e298b8928e39703bc028c40 (diff)
downloadnautilus-9c56883cbd7b92381a5e5bbb852c3ea657239118.tar.gz
libnautilus-extension: Remove deprecated headers
Deprecated since commit 7e2605c681d065e6b0a3d779c30b892932597991
-rw-r--r--libnautilus-extension/meson.build7
-rw-r--r--libnautilus-extension/nautilus-extension-types.h33
-rw-r--r--libnautilus-extension/nautilus-menu-item.h30
3 files changed, 0 insertions, 70 deletions
diff --git a/libnautilus-extension/meson.build b/libnautilus-extension/meson.build
index c8b58c488..8450873de 100644
--- a/libnautilus-extension/meson.build
+++ b/libnautilus-extension/meson.build
@@ -1,10 +1,5 @@
nautilus_extension_version = '2.0.0'
-libnautilus_extension_deprecated_headers = [
- 'nautilus-extension-types.h',
- 'nautilus-menu-item.h'
-]
-
libnautilus_extension_headers = [
'nautilus-column-provider.h',
'nautilus-column.h',
@@ -23,7 +18,6 @@ install_headers(
)
install_headers(
libnautilus_extension_headers,
- libnautilus_extension_deprecated_headers,
subdir: join_paths('nautilus', 'libnautilus-extension')
)
@@ -61,7 +55,6 @@ libnautilus_extension_deps = [
libnautilus_extension = shared_library(
'nautilus-extension', [
- libnautilus_extension_deprecated_headers,
libnautilus_extension_sources,
],
c_args: [
diff --git a/libnautilus-extension/nautilus-extension-types.h b/libnautilus-extension/nautilus-extension-types.h
deleted file mode 100644
index 7f2eab3ce..000000000
--- a/libnautilus-extension/nautilus-extension-types.h
+++ /dev/null
@@ -1,33 +0,0 @@
-/* nautilus-info-provider.h - Type definitions for Nautilus extensions
- *
- * Copyright (C) 2003 Novell, Inc.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 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
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public
- * License along with this library; if not, see <http://www.gnu.org/licenses/>.
- *
- * Author: Dave Camp <dave@ximian.com>
- *
- */
-
-/* This interface is implemented by Nautilus extensions that want to
- * provide information about files. Extensions are called when Nautilus
- * needs information about a file. They are passed a NautilusFileInfo
- * object which should be filled with relevant information */
-
-#pragma once
-
-#if !defined (NAUTILUS_EXTENSION_H) && !defined (NAUTILUS_COMPILATION)
-#warning "This header is deprecated, include <nautilus-extension.h> instead."
-#endif
-
-#include <nautilus-extension.h>
diff --git a/libnautilus-extension/nautilus-menu-item.h b/libnautilus-extension/nautilus-menu-item.h
deleted file mode 100644
index bf7b9e6e7..000000000
--- a/libnautilus-extension/nautilus-menu-item.h
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * nautilus-menu-item.h - Menu items exported by NautilusMenuProvider
- * objects.
- *
- * Copyright (C) 2003 Novell, Inc.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 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
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public
- * License along with this library; if not, see <http://www.gnu.org/licenses/>.
- *
- * Author: Dave Camp <dave@ximian.com>
- *
- */
-
-#pragma once
-
-#if !defined (NAUTILUS_EXTENSION_H) && !defined (NAUTILUS_COMPILATION)
-#warning "Only <nautilus-extension.h> should be included directly."
-#endif
-
-#include "nautilus-menu.h" \ No newline at end of file