I just want to connect a cpp signal to a qml slot and tried different ways, but it always results in the same QML-Error at runtime: Cannot assign to non-existent propert
For exposing signals from C++ Object you must follow some naming conventions:
void yourLongSignal()
on<YourLongSignal>
So, the only thing you have to edit in your code is to change
signals:
void processed(const QString& str);