citra-qt: Make constructors explicit where applicable

This commit is contained in:
Lioncash 2016-12-11 07:22:10 -05:00 committed by linkmauve
parent 327b23e4ce
commit d0e4d1182b
15 changed files with 35 additions and 32 deletions

View file

@ -20,7 +20,7 @@ public:
CommandIdRole = Qt::UserRole,
};
GPUCommandListModel(QObject* parent);
explicit GPUCommandListModel(QObject* parent);
int columnCount(const QModelIndex& parent = QModelIndex()) const override;
int rowCount(const QModelIndex& parent = QModelIndex()) const override;
@ -39,7 +39,7 @@ class GPUCommandListWidget : public QDockWidget {
Q_OBJECT
public:
GPUCommandListWidget(QWidget* parent = nullptr);
explicit GPUCommandListWidget(QWidget* parent = nullptr);
public slots:
void OnToggleTracing();