summaryrefslogtreecommitdiff
path: root/src/yuzu/debugger/graphics
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-08-06 13:12:32 -0400
committerLioncash <mathew1800@gmail.com>2018-08-06 13:29:14 -0400
commit7846295a8f5c74cecdebc467e902406fe7179547 (patch)
tree4d4ede32087cb28ec94a506949b72d3f606cf75c /src/yuzu/debugger/graphics
parent00a68c5eea17db975446c499a6dbf84311441f04 (diff)
qt: Add missing override specifiers where applicable
Diffstat (limited to 'src/yuzu/debugger/graphics')
-rw-r--r--src/yuzu/debugger/graphics/graphics_surface.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/yuzu/debugger/graphics/graphics_surface.h b/src/yuzu/debugger/graphics/graphics_surface.h
index 58f9db465..323e39d94 100644
--- a/src/yuzu/debugger/graphics/graphics_surface.h
+++ b/src/yuzu/debugger/graphics/graphics_surface.h
@@ -22,11 +22,11 @@ class SurfacePicture : public QLabel {
public:
explicit SurfacePicture(QWidget* parent = nullptr,
GraphicsSurfaceWidget* surface_widget = nullptr);
- ~SurfacePicture();
+ ~SurfacePicture() override;
protected slots:
- virtual void mouseMoveEvent(QMouseEvent* event);
- virtual void mousePressEvent(QMouseEvent* event);
+ void mouseMoveEvent(QMouseEvent* event) override;
+ void mousePressEvent(QMouseEvent* event) override;
private:
GraphicsSurfaceWidget* surface_widget;