summaryrefslogtreecommitdiff
path: root/src/plugins/dt.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2025-01-12 14:23:01 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2025-01-12 14:23:01 (GMT)
commitbaa854bfcc969022a00617b58a661e37f345cab5 (patch)
tree093d3ace4c2e1ad8fa37ce5e08723f768fffbada /src/plugins/dt.c
parent0fdba5bd3e2c9ed913619990dbda7925867e46c5 (diff)
Rewrite the plugin system.
Diffstat (limited to 'src/plugins/dt.c')
-rw-r--r--src/plugins/dt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/dt.c b/src/plugins/dt.c
index 2899845..9de0553 100644
--- a/src/plugins/dt.c
+++ b/src/plugins/dt.c
@@ -550,7 +550,7 @@ gpointer create_object_from_type(GType type)
result = NULL;
if (g_dynamic_types_find(_chrysalide_dtypes, type) != NULL)
- result = build_type_instance(type);
+ result = NULL;//build_type_instance(type);
else
result = g_object_new(type, NULL);