summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Reiter <reiter.christoph@gmail.com>2022-08-08 09:26:44 +0200
committerChristoph Reiter <reiter.christoph@gmail.com>2022-08-08 09:26:51 +0200
commit4b421597d1885c725cbcdd44c4d04277454bee85 (patch)
tree2ec82a8cdd487541c4db399ac672bb72aa550e42
parent642fc410983fa44d0318b2f7e6c42b82576e7c19 (diff)
downloadpygobject-4b421597d1885c725cbcdd44c4d04277454bee85.tar.gz
Revert "pygi: Fix girepository deprecation warnings"
This reverts commit fc776c2058e11da5c3a4cebeea7f313057bc079f. This might have caused a regression, see #535. Until we know more revert this for now.
-rw-r--r--gi/pygi-closure.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/gi/pygi-closure.c b/gi/pygi-closure.c
index 5916ec99..919365a3 100644
--- a/gi/pygi-closure.c
+++ b/gi/pygi-closure.c
@@ -24,10 +24,6 @@
#include "pygi-ccallback.h"
#include "pygi-info.h"
-#ifndef GI_CHECK_VERSION
-#define GI_CHECK_VERSION(x,y,z) 0
-#endif
-
extern PyObject *_PyGIDefaultArgPlaceholder;
typedef struct _PyGICallbackCache
@@ -636,13 +632,8 @@ end:
void _pygi_invoke_closure_free (PyGICClosure* invoke_closure)
{
-#if GI_CHECK_VERSION(1, 72, 0)
- g_callable_info_destroy_closure (invoke_closure->info,
- invoke_closure->closure);
-#else
g_callable_info_free_closure (invoke_closure->info,
invoke_closure->closure);
-#endif
if (invoke_closure->info)
g_base_info_unref ( (GIBaseInfo*) invoke_closure->info);
@@ -680,13 +671,8 @@ _pygi_make_native_closure (GICallableInfo* info,
Py_XINCREF (closure->user_data);
fficlosure =
-#if GI_CHECK_VERSION(1, 72, 0)
- g_callable_info_create_closure (info, &closure->cif, _pygi_closure_handle,
- closure);
-#else
g_callable_info_prepare_closure (info, &closure->cif, _pygi_closure_handle,
closure);
-#endif
closure->closure = fficlosure;
/* Give the closure the information it needs to determine when