qtquick: Pass the userType all the way to titleBarFilename()

This commit is contained in:
Sergio Martins
2021-02-28 20:33:46 +00:00
parent ac0d35ef12
commit e37c1f0e8c
5 changed files with 8 additions and 9 deletions

View File

@@ -24,8 +24,9 @@ public:
~CustomFrameworkWidgetFactory() override;
QUrl titleBarFilename() const override
QUrl titleBarFilename(int userType) const override
{
Q_UNUSED(userType);
return QUrl("qrc:/MyTitleBar.qml");
}
};