diff options
author | Lioncash <mathew1800@gmail.com> | 2015-09-11 14:50:10 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2015-09-11 14:59:49 -0400 |
commit | 60b3fc01a2377e51d5d8acb497c75f41daf14030 (patch) | |
tree | e6f64223500d6f579a924b1c53b6a20813abf1ee /src/citra_qt/debugger/ramview.h | |
parent | 506ab0623811b2a9443bc263ca64d3ac8f8c8356 (diff) |
General: Replace NULL and '0' usages with nullptr where applicable
Diffstat (limited to 'src/citra_qt/debugger/ramview.h')
-rw-r--r-- | src/citra_qt/debugger/ramview.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/citra_qt/debugger/ramview.h b/src/citra_qt/debugger/ramview.h index 18423036f..0ef74586b 100644 --- a/src/citra_qt/debugger/ramview.h +++ b/src/citra_qt/debugger/ramview.h @@ -9,7 +9,7 @@ class GRamView : public QHexEdit Q_OBJECT public: - GRamView(QWidget* parent = NULL); + GRamView(QWidget* parent = nullptr); public slots: void OnCPUStepped(); |