Remove userType() from public API for now

If added, will need to be through overloads, to not break source
compat. Will add them once there's a need.
This commit is contained in:
Sergio Martins
2021-03-01 16:33:13 +00:00
parent 74b034a195
commit 19fd1635e6
4 changed files with 11 additions and 16 deletions

View File

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