Fixed build with -Wextra-semi

This commit is contained in:
Sergio Martins
2023-01-06 17:14:58 +00:00
parent 32b0e024d8
commit a6598d4607
10 changed files with 18 additions and 12 deletions

View File

@@ -67,7 +67,9 @@ private:
protected:
virtual DropLocation hover_impl(QPoint globalPos) = 0;
virtual void onHoveredFrameChanged(Frame *);
virtual void updateVisibility() {};
virtual void updateVisibility()
{
}
Frame *m_hoveredFrame = nullptr;
DropArea *const m_dropArea;