Quote Originally Posted by Prisco View Post
Hi
In other forums they suggest to override QUiLoader::createWidget(const QString &className, QWidget *parent, const QString &name)
If you are loading the ui dynamically, then you need to let the UI loader have a way of instantiating your widget, it can't magically create widgets it doesn't know anything about.

So you either do that by reimplementing createWidget() or, I think, by providing a widget plugin.

Cheers,
_