summaryrefslogtreecommitdiff
path: root/plugins/pychrysalide/glibext/module.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2024-11-23 15:59:19 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2024-11-23 15:59:19 (GMT)
commit411f03130cf45194689bc344f19a3b77c33a31ae (patch)
treef047b62015eb37e30629398f9adcb977a5a6c6f6 /plugins/pychrysalide/glibext/module.c
parent80d779749adf228078b61f268bf952ba91a277f0 (diff)
Restore more features for formats.
Diffstat (limited to 'plugins/pychrysalide/glibext/module.c')
-rw-r--r--plugins/pychrysalide/glibext/module.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/pychrysalide/glibext/module.c b/plugins/pychrysalide/glibext/module.c
index 23e7a7d..e62d587 100644
--- a/plugins/pychrysalide/glibext/module.c
+++ b/plugins/pychrysalide/glibext/module.c
@@ -30,7 +30,6 @@
/*
#include "binarycursor.h"
-#include "binportion.h"
#include "buffercache.h"
#include "bufferline.h"
#include "bufferview.h"
@@ -42,6 +41,7 @@
#include "named.h"
#include "singleton.h"
*/
+#include "portion.h"
#include "work.h"
#include "workqueue.h"
#include "../helpers.h"
@@ -110,6 +110,7 @@ bool populate_glibext_module(void)
result = true;
+ if (result) result = ensure_python_binary_portion_is_registered();
if (result) result = ensure_python_generic_work_is_registered();
if (result) result = ensure_python_work_queue_is_registered();
@@ -117,7 +118,6 @@ bool populate_glibext_module(void)
if (result) result = ensure_python_singleton_candidate_is_registered();
if (result) result = ensure_python_binary_cursor_is_registered();
- if (result) result = ensure_python_binary_portion_is_registered();
if (result) result = ensure_python_buffer_cache_is_registered();
if (result) result = ensure_python_buffer_line_is_registered();
#ifdef INCLUDE_GTK_SUPPORT