diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2025-01-12 19:51:22 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2025-01-12 20:30:17 (GMT) |
commit | 71367e25e95b90b34891ec88083a52e0e0f60f13 (patch) | |
tree | 744a548932ab522fca76c3e7298a7be6784fdb7e /src/plugins/pglist.c | |
parent | baa854bfcc969022a00617b58a661e37f345cab5 (diff) |
Delete the now useless dynamic GTypes support and old plugin system code.
Diffstat (limited to 'src/plugins/pglist.c')
-rw-r--r-- | src/plugins/pglist.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/plugins/pglist.c b/src/plugins/pglist.c index 083f11f..694d138 100644 --- a/src/plugins/pglist.c +++ b/src/plugins/pglist.c @@ -36,7 +36,6 @@ #include <i18n.h> -#include "dt.h" #include "manager.h" #include "plugin-int.h" #include "../common/cpp.h" @@ -92,8 +91,7 @@ bool init_all_plugins(bool load) char *saveptr; /* Sauvegarde pour parcours */ char *udir; /* Répertoire supplémentaire ? */ - result = init_chrysalide_dynamic_types(); - if (!result) goto exit; + result = true; g_rw_lock_init(&_pg_lock); @@ -199,8 +197,6 @@ void exit_all_plugins(void) g_rw_lock_clear(&_pg_lock); - exit_chrysalide_dynamic_types(); - #endif |