diff options
author | bunnei <bunneidev@gmail.com> | 2018-08-03 00:17:55 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-03 00:17:55 -0400 |
commit | 49d817134ae7f56f4807c675392f07a86971d1e3 (patch) | |
tree | afb98576e1101e71d0b943004eb086c0e58cac46 /src/yuzu/debugger/graphics/graphics_surface.h | |
parent | 61ed68f3d04e91870d9cd8970e0dbd0a3beb3ed0 (diff) | |
parent | db340f640274da26dec7a60fe00a9814d4165dcd (diff) |
Merge pull request #907 from lioncash/slot
yuzu: Use Qt 5 signal/slots where applicable
Diffstat (limited to 'src/yuzu/debugger/graphics/graphics_surface.h')
-rw-r--r-- | src/yuzu/debugger/graphics/graphics_surface.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/yuzu/debugger/graphics/graphics_surface.h b/src/yuzu/debugger/graphics/graphics_surface.h index 6a344bdfc..58f9db465 100644 --- a/src/yuzu/debugger/graphics/graphics_surface.h +++ b/src/yuzu/debugger/graphics/graphics_surface.h @@ -65,16 +65,15 @@ public slots: void OnSurfacePickerYChanged(int new_value); void OnUpdate(); -private slots: +signals: + void Update(); + +private: void OnBreakPointHit(Tegra::DebugContext::Event event, void* data) override; void OnResumed() override; void SaveSurface(); -signals: - void Update(); - -private: QComboBox* surface_source_list; CSpinBox* surface_address_control; QSpinBox* surface_width_control; |