ui/common/object.c

changeset 1035
86d3a45dc928
parent 1016
ccde46662db7
--- a/ui/common/object.c	Wed Dec 31 09:16:02 2025 +0100
+++ b/ui/common/object.c	Wed Dec 31 10:06:15 2025 +0100
@@ -107,15 +107,11 @@
 }
 
 UiObject* uic_object_new_toplevel(void) {
-    fflush(stdout);
     CxMempool *mp = cxMempoolCreateSimple(256);
     UiObject *obj = cxCalloc(mp->allocator, 1, sizeof(UiObjectPrivate));
-    fflush(stdout);
     obj->ctx = uic_context(obj, mp);
     obj->ctx->parent = ui_global_context();
-    fflush(stdout);
     uic_object_created(obj);
-    fflush(stdout);
     return obj;
 }
 

mercurial