Fixes by clang-tidy

This commit is contained in:
magnesj
2021-04-15 02:14:51 +00:00
committed by Magne Sjaastad
parent 6421564b77
commit a44378e2f5
75 changed files with 91 additions and 91 deletions

View File

@@ -62,7 +62,7 @@ public:
public:
RimPlot();
virtual ~RimPlot();
~RimPlot() override;
QWidget* createPlotWidget( QWidget* parent = nullptr );
RowOrColSpan rowSpan() const;
@@ -110,7 +110,7 @@ protected:
void updateFonts() override;
private:
virtual void doRenderWindowContent( QPaintDevice* paintDevice ) override;
void doRenderWindowContent( QPaintDevice* paintDevice ) override;
virtual void handleKeyPressEvent( QKeyEvent* event ) {}
virtual void handleWheelEvent( QWheelEvent* event ) {}
virtual RiuQwtPlotWidget* doCreatePlotViewWidget( QWidget* parent ) = 0;