summaryrefslogtreecommitdiffstats
path: root/src/citra_qt
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2015-09-12 05:04:19 +0200
committerLioncash <mathew1800@gmail.com>2015-09-12 05:11:01 +0200
commit07bfe0abbb40d7131bbf12beb9eb829dbd8fb53b (patch)
tree7a17a8078e8b65765d369b4cfa2c34120aec11d6 /src/citra_qt
parentMerge pull request #1151 from lioncash/return (diff)
downloadyuzu-07bfe0abbb40d7131bbf12beb9eb829dbd8fb53b.tar
yuzu-07bfe0abbb40d7131bbf12beb9eb829dbd8fb53b.tar.gz
yuzu-07bfe0abbb40d7131bbf12beb9eb829dbd8fb53b.tar.bz2
yuzu-07bfe0abbb40d7131bbf12beb9eb829dbd8fb53b.tar.lz
yuzu-07bfe0abbb40d7131bbf12beb9eb829dbd8fb53b.tar.xz
yuzu-07bfe0abbb40d7131bbf12beb9eb829dbd8fb53b.tar.zst
yuzu-07bfe0abbb40d7131bbf12beb9eb829dbd8fb53b.zip
Diffstat (limited to 'src/citra_qt')
-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();