diff options
author | Lioncash <mathew1800@gmail.com> | 2019-04-03 16:07:09 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-04-03 16:07:12 +0200 |
commit | 6b629f4816d9c3b5c008c7d32a9e716ce243e0bf (patch) | |
tree | 709efda352773e8d97aa98194b20eb41c726a733 /src | |
parent | Merge pull request #2270 from lioncash/plist (diff) | |
download | yuzu-6b629f4816d9c3b5c008c7d32a9e716ce243e0bf.tar yuzu-6b629f4816d9c3b5c008c7d32a9e716ce243e0bf.tar.gz yuzu-6b629f4816d9c3b5c008c7d32a9e716ce243e0bf.tar.bz2 yuzu-6b629f4816d9c3b5c008c7d32a9e716ce243e0bf.tar.lz yuzu-6b629f4816d9c3b5c008c7d32a9e716ce243e0bf.tar.xz yuzu-6b629f4816d9c3b5c008c7d32a9e716ce243e0bf.tar.zst yuzu-6b629f4816d9c3b5c008c7d32a9e716ce243e0bf.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/yuzu/debugger/profiler.cpp | 1 | ||||
-rw-r--r-- | src/yuzu/debugger/profiler.h | 9 |
2 files changed, 6 insertions, 4 deletions
diff --git a/src/yuzu/debugger/profiler.cpp b/src/yuzu/debugger/profiler.cpp index 8b30e0a85..86e03e46d 100644 --- a/src/yuzu/debugger/profiler.cpp +++ b/src/yuzu/debugger/profiler.cpp @@ -7,6 +7,7 @@ #include <QMouseEvent> #include <QPainter> #include <QString> +#include <QTimer> #include "common/common_types.h" #include "common/microprofile.h" #include "yuzu/debugger/profiler.h" diff --git a/src/yuzu/debugger/profiler.h b/src/yuzu/debugger/profiler.h index eae1e9e3c..8e69fdb06 100644 --- a/src/yuzu/debugger/profiler.h +++ b/src/yuzu/debugger/profiler.h @@ -4,10 +4,11 @@ #pragma once -#include <QAbstractItemModel> -#include <QDockWidget> -#include <QTimer> -#include "common/microprofile.h" +#include <QWidget> + +class QAction; +class QHideEvent; +class QShowEvent; class MicroProfileDialog : public QWidget { Q_OBJECT |