summaryrefslogtreecommitdiffstats
path: root/src/citra_qt/debugger
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-09-12 20:49:07 +0200
committerbunnei <bunneidev@gmail.com>2015-09-12 20:49:07 +0200
commit5fdfd782cc7149e03a93cb33e1a701b7ad1aa74b (patch)
treec8e5abda9387898fa9792ce2d53b078f383b60f9 /src/citra_qt/debugger
parentMerge pull request #1151 from lioncash/return (diff)
parentmemory_util: Remove unnecessary assignment in FreeMemoryPages (diff)
downloadyuzu-5fdfd782cc7149e03a93cb33e1a701b7ad1aa74b.tar
yuzu-5fdfd782cc7149e03a93cb33e1a701b7ad1aa74b.tar.gz
yuzu-5fdfd782cc7149e03a93cb33e1a701b7ad1aa74b.tar.bz2
yuzu-5fdfd782cc7149e03a93cb33e1a701b7ad1aa74b.tar.lz
yuzu-5fdfd782cc7149e03a93cb33e1a701b7ad1aa74b.tar.xz
yuzu-5fdfd782cc7149e03a93cb33e1a701b7ad1aa74b.tar.zst
yuzu-5fdfd782cc7149e03a93cb33e1a701b7ad1aa74b.zip
Diffstat (limited to 'src/citra_qt/debugger')
-rw-r--r--src/citra_qt/debugger/profiler.cpp2
-rw-r--r--src/citra_qt/debugger/profiler.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/citra_qt/debugger/profiler.cpp b/src/citra_qt/debugger/profiler.cpp
index 043f20659..4f6ba0e1f 100644
--- a/src/citra_qt/debugger/profiler.cpp
+++ b/src/citra_qt/debugger/profiler.cpp
@@ -150,7 +150,7 @@ void ProfilerWidget::setProfilingInfoUpdateEnabled(bool enable)
class MicroProfileWidget : public QWidget {
public:
- MicroProfileWidget(QWidget* parent = 0);
+ MicroProfileWidget(QWidget* parent = nullptr);
protected:
void paintEvent(QPaintEvent* ev) override;
diff --git a/src/citra_qt/debugger/profiler.h b/src/citra_qt/debugger/profiler.h
index 85c27a43e..036054740 100644
--- a/src/citra_qt/debugger/profiler.h
+++ b/src/citra_qt/debugger/profiler.h
@@ -53,7 +53,7 @@ class MicroProfileDialog : public QWidget {
Q_OBJECT
public:
- MicroProfileDialog(QWidget* parent = 0);
+ MicroProfileDialog(QWidget* parent = nullptr);
/// Returns a QAction that can be used to toggle visibility of this dialog.
QAction* toggleViewAction();