summaryrefslogtreecommitdiffstats
path: root/src/citra_qt/debugger/profiler.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2016-12-11 13:22:10 +0100
committerlinkmauve <linkmauve@linkmauve.fr>2016-12-11 15:18:06 +0100
commitd0e4d1182bd1bb4811662d47cde091826ca38600 (patch)
tree638f8db020f46c89881dfea60ce15ec060921ffb /src/citra_qt/debugger/profiler.h
parentcitra-qt: Add missing #pragma once directives (diff)
downloadyuzu-d0e4d1182bd1bb4811662d47cde091826ca38600.tar
yuzu-d0e4d1182bd1bb4811662d47cde091826ca38600.tar.gz
yuzu-d0e4d1182bd1bb4811662d47cde091826ca38600.tar.bz2
yuzu-d0e4d1182bd1bb4811662d47cde091826ca38600.tar.lz
yuzu-d0e4d1182bd1bb4811662d47cde091826ca38600.tar.xz
yuzu-d0e4d1182bd1bb4811662d47cde091826ca38600.tar.zst
yuzu-d0e4d1182bd1bb4811662d47cde091826ca38600.zip
Diffstat (limited to 'src/citra_qt/debugger/profiler.h')
-rw-r--r--src/citra_qt/debugger/profiler.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/citra_qt/debugger/profiler.h b/src/citra_qt/debugger/profiler.h
index d8c6487aa..c8912fd5a 100644
--- a/src/citra_qt/debugger/profiler.h
+++ b/src/citra_qt/debugger/profiler.h
@@ -15,7 +15,7 @@ class ProfilerModel : public QAbstractItemModel {
Q_OBJECT
public:
- ProfilerModel(QObject* parent);
+ explicit ProfilerModel(QObject* parent);
QVariant headerData(int section, Qt::Orientation orientation,
int role = Qt::DisplayRole) const override;
@@ -37,7 +37,7 @@ class ProfilerWidget : public QDockWidget {
Q_OBJECT
public:
- ProfilerWidget(QWidget* parent = nullptr);
+ explicit ProfilerWidget(QWidget* parent = nullptr);
private slots:
void setProfilingInfoUpdateEnabled(bool enable);
@@ -53,7 +53,7 @@ class MicroProfileDialog : public QWidget {
Q_OBJECT
public:
- MicroProfileDialog(QWidget* parent = nullptr);
+ explicit MicroProfileDialog(QWidget* parent = nullptr);
/// Returns a QAction that can be used to toggle visibility of this dialog.
QAction* toggleViewAction();