diff -r 9e18cb8c4412 -r 4b31c74666d7 ui/qt/window.cpp --- a/ui/qt/window.cpp Wed Mar 26 20:27:20 2025 +0100 +++ b/ui/qt/window.cpp Wed Mar 26 20:39:04 2025 +0100 @@ -26,7 +26,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#include <ucx/mempool.h> +#include <cx/mempool.h> #include "../common/context.h" #include "window.h" @@ -38,8 +38,8 @@ #include <QFileDialog> static UiObject* create_window(char *title, void *window_data, bool simple) { - UcxMempool *mp = ucx_mempool_new(256); - UiObject *obj = (UiObject*)ucx_mempool_calloc(mp, 1, sizeof(UiObject)); + CxMempool *mp = cxMempoolCreateSimple(256); + UiObject *obj = (UiObject*)cxCalloc(mp->allocator, 1, sizeof(UiObject)); obj->ctx = uic_context(obj, mp); obj->window = window_data; obj->next = NULL; @@ -47,17 +47,18 @@ QMainWindow *window = new QMainWindow(); obj->widget = window; + /* if(!simple) { - ui_add_menus(obj, window); QToolBar *toolbar = ui_create_toolbar(obj); window->addToolBar(Qt::TopToolBarArea, toolbar); } + */ QBoxLayout *box = new QVBoxLayout(); QWidget *boxWidget = new QWidget(); boxWidget->setLayout(box); window->setCentralWidget(boxWidget); - obj->container = new UiBoxContainer(box); + //obj->container = new UiBoxContainer(box); obj->widget = window; return obj;