fix: add missing headers

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
Sefa Eyeoglu 2023-07-31 15:37:35 +02:00
parent f256b836f4
commit ce2ca13815
No known key found for this signature in database
GPG Key ID: E13DFD4B47127951
2 changed files with 4 additions and 0 deletions

View File

@ -1,5 +1,8 @@
#pragma once #pragma once
#include <QList>
#include <QString>
enum class ProblemSeverity enum class ProblemSeverity
{ {
None, None,

View File

@ -1,6 +1,7 @@
#pragma once #pragma once
#include <QString> #include <QString>
#include <QObject>
class QAccessibleInterface; class QAccessibleInterface;
QAccessibleInterface *groupViewAccessibleFactory(const QString &classname, QObject *object); QAccessibleInterface *groupViewAccessibleFactory(const QString &classname, QObject *object);