mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-08 22:39:58 +00:00
yuzu/debugger/profiler: Remove unnecessary includes
Moves includes into the cpp file where necessary. This way, microprofile-related stuff isn't dumped into other UI-related code when the dialog header gets included.
This commit is contained in:
parent
e796351a0d
commit
6b629f4816
2 changed files with 6 additions and 4 deletions
|
@ -7,6 +7,7 @@
|
||||||
#include <QMouseEvent>
|
#include <QMouseEvent>
|
||||||
#include <QPainter>
|
#include <QPainter>
|
||||||
#include <QString>
|
#include <QString>
|
||||||
|
#include <QTimer>
|
||||||
#include "common/common_types.h"
|
#include "common/common_types.h"
|
||||||
#include "common/microprofile.h"
|
#include "common/microprofile.h"
|
||||||
#include "yuzu/debugger/profiler.h"
|
#include "yuzu/debugger/profiler.h"
|
||||||
|
|
|
@ -4,10 +4,11 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <QAbstractItemModel>
|
#include <QWidget>
|
||||||
#include <QDockWidget>
|
|
||||||
#include <QTimer>
|
class QAction;
|
||||||
#include "common/microprofile.h"
|
class QHideEvent;
|
||||||
|
class QShowEvent;
|
||||||
|
|
||||||
class MicroProfileDialog : public QWidget {
|
class MicroProfileDialog : public QWidget {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
Loading…
Reference in a new issue