Fix -Wweak-vtables warnings

This commit is contained in:
Sergio Martins
2020-10-14 14:25:24 +01:00
parent 07db9f9a7a
commit 819725351a
10 changed files with 37 additions and 5 deletions

View File

@@ -40,6 +40,8 @@ public:
m_inCtor = false;
}
~Private() override;
void setIsFocused(bool);
void onFocusObjectChanged(QObject *);
bool isInFocusScope(WidgetType *) const;
@@ -51,6 +53,9 @@ public:
QPointer<WidgetType> m_lastFocusedInScope;
};
FocusScope::Private::~Private()
{
}
FocusScope::FocusScope(QWidgetAdapter *thisWidget)
: d(new Private(this, thisWidget))