diff options
author | bunnei <bunneidev@gmail.com> | 2018-08-06 21:32:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-06 21:32:25 -0400 |
commit | 168958f8e20d2e3f8652b5e7dc7f58b650c683c5 (patch) | |
tree | d4d37e6d25ddcf8f5e4980f392a601b78b78d684 /src/yuzu/debugger/graphics/graphics_surface.cpp | |
parent | f179e87864b2ab2e0a482311dff2bd271fbbbeda (diff) | |
parent | 9764b4ec0edec5993526d527e03e9b47f6f06b5e (diff) |
Merge pull request #942 from lioncash/default
qt: Minor cleanup-related changes
Diffstat (limited to 'src/yuzu/debugger/graphics/graphics_surface.cpp')
-rw-r--r-- | src/yuzu/debugger/graphics/graphics_surface.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/yuzu/debugger/graphics/graphics_surface.cpp b/src/yuzu/debugger/graphics/graphics_surface.cpp index ff3efcdaa..3f7103ab9 100644 --- a/src/yuzu/debugger/graphics/graphics_surface.cpp +++ b/src/yuzu/debugger/graphics/graphics_surface.cpp @@ -34,7 +34,8 @@ static Tegra::Texture::TextureFormat ConvertToTextureFormat( SurfacePicture::SurfacePicture(QWidget* parent, GraphicsSurfaceWidget* surface_widget_) : QLabel(parent), surface_widget(surface_widget_) {} -SurfacePicture::~SurfacePicture() {} + +SurfacePicture::~SurfacePicture() = default; void SurfacePicture::mousePressEvent(QMouseEvent* event) { // Only do something while the left mouse button is held down |