Richard Dzenis
Richard Dzenis
Sometimes yabar 'randomly' crashes with the error specified in the title (`Error in 'yabar': corrupted double-linked list`). It's the same error which was in the issue #54. Unfortunately, I cannot...
According to [MSDN](https://learn.microsoft.com/en-us/cpp/preprocessor/predefined-macros) `__FUNCDNAME__`, `__FUNCSIG__`, and `__FUNCTION__` are non-expandible macros defined as string literals. So, they may be concatenated with other string literals ([Compiler Explorer link](https://godbolt.org/z/eM9P1crMz)): ```cpp extern "C" int...
#### Code ``` go mainLayout := ui.NewGridLayout() mainWidget := ui.NewWidget() mainWidget.SetParent(w) mainWidget.SetLayout(mainLayout) w.SetCentralWidget(mainWidget) ``` `w` is a struct similar to MainWindow from the [example](https://github.com/visualfc/goqt/blob/master/examples/application/mainwindow.go). #### Error ``` *ui.QGridLayout does not...
A user must register types before establishing a database connection; otherwise, vector types in Sequelize objects will be represented as strings.