qtquick: Remove unused QQuickItem::classBegin()

No need to override it
This commit is contained in:
Sergio Martins
2021-04-05 14:56:06 +01:00
parent 548e38fca0
commit e4fdf33cfc
4 changed files with 0 additions and 12 deletions

View File

@@ -42,11 +42,6 @@ DockWidgetQuick *DockWidgetInstantiator::dockWidget() const
return m_dockWidget;
}
void DockWidgetInstantiator::classBegin()
{
// Nothing interesting to do here.
}
void DockWidgetInstantiator::componentComplete()
{
if (m_uniqueName.isEmpty()) {

View File

@@ -48,7 +48,6 @@ public:
DockWidgetQuick *dockWidget() const;
protected:
void classBegin() override;
void componentComplete() override;
Q_SIGNALS:

View File

@@ -48,11 +48,6 @@ void MainWindowInstantiator::setOptions(int options)
}
}
void MainWindowInstantiator::classBegin()
{
// Nothing interesting to do here.
}
void MainWindowInstantiator::componentComplete()
{
if (m_uniqueName.isEmpty()) {

View File

@@ -40,7 +40,6 @@ public:
void setOptions(int);
protected:
void classBegin() override;
void componentComplete() override;
Q_SIGNALS: