summaryrefslogtreecommitdiff
path: root/libpeas/peas-object-module.c
diff options
context:
space:
mode:
authorChristian Hergert <chergert@redhat.com>2019-10-24 14:35:32 -0700
committerChristian Hergert <chergert@redhat.com>2019-10-24 14:35:32 -0700
commitf5532e6b7cf6472bd70d06332ebd55342ff362bc (patch)
treec27ed3c795e43bc032c7c3e9051bf8f26ffbf178 /libpeas/peas-object-module.c
parentd977962aaafc3d4294729063697d273bc7d24852 (diff)
downloadlibpeas-f5532e6b7cf6472bd70d06332ebd55342ff362bc.tar.gz
build: specify min/max glib versions in meson.build
This ensures that we don't use API that we cannot use, but also ensures that we don't need to litter the source code with begin/end ignore deprecations.
Diffstat (limited to 'libpeas/peas-object-module.c')
-rw-r--r--libpeas/peas-object-module.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/libpeas/peas-object-module.c b/libpeas/peas-object-module.c
index 53485b9..10e7d82 100644
--- a/libpeas/peas-object-module.c
+++ b/libpeas/peas-object-module.c
@@ -431,7 +431,6 @@ peas_object_module_new_embedded (const gchar *module_name,
NULL));
}
-G_GNUC_BEGIN_IGNORE_DEPRECATIONS
/**
* peas_object_module_create_object: (skip)
* @module: A #PeasObjectModule.
@@ -472,7 +471,6 @@ peas_object_module_create_object (PeasObjectModule *module,
return NULL;
}
-G_GNUC_END_IGNORE_DEPRECATIONS
/**
* peas_object_module_provides_object: (skip)
@@ -624,7 +622,6 @@ peas_object_module_register_extension_factory (PeasObjectModule *module,
g_debug ("Registered extension for type '%s'", g_type_name (exten_type));
}
-G_GNUC_BEGIN_IGNORE_DEPRECATIONS
static GObject *
create_gobject_from_type (guint n_parameters,
GParameter *parameters,
@@ -654,7 +651,6 @@ create_gobject_from_type (guint n_parameters,
return G_OBJECT (g_object_newv (impl_type, n_parameters, parameters));
}
-G_GNUC_END_IGNORE_DEPRECATIONS
/**
* peas_object_module_register_extension_type: