On 2017-12-03, Andreas Tille <[email protected]> wrote: > code from Qt4 to Qt5[2] which enabled to **build** the package.
The patch looks right for a start. > $ clonalorigin-gui > QMetaObject::connectSlotsByName: No matching signal for > on_actionGelman_Rubin_test_activated() connectSlotsByName is unfortunately one of the misfeatures where it ist attempted to magically by function name tie things together. I think you need to go thru all of this manually and create connect statements where they are needed. Or figure out if some of your objects haven't set an object name. In general, void on_<object name>_<signal name>(<signal parameters>); is what is looked for in the automatching. http://doc.qt.io/qt-5/qmetaobject.html#connectSlotsByName is the documentation. /Sune

