1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-02-20 19:39:41 +00:00

Merge pull request #2052 from mp3butcher/master

fix moc achieving to reach unparsable boost code
This commit is contained in:
Bret Curtis 2018-12-02 19:28:35 +01:00 committed by GitHub
commit c2c86fc4a5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 21 additions and 3 deletions

View file

@ -6,7 +6,7 @@
#ifndef Q_MOC_RUN
#include <components/files/configurationmanager.hpp>
#endif
#include <components/process/processinvoker.hpp>
@ -14,7 +14,7 @@
#include <components/config/launchersettings.hpp>
#include <components/settings/settings.hpp>
#endif
#include "ui_mainwindow.h"
class QListWidgetItem;

View file

@ -4,6 +4,8 @@
#include <QDialog>
#include <QModelIndex>
#ifndef Q_MOC_RUN
#include <boost/filesystem/path.hpp>
#include "adjusterwidget.hpp"
@ -12,6 +14,8 @@
Q_DECLARE_METATYPE (boost::filesystem::path)
#endif
#endif
#include "ui_filedialog.h"
namespace ContentSelectorView

View file

@ -8,6 +8,7 @@
#include <QWidget>
#include <QEvent>
#ifndef Q_MOC_RUN
#include "../../model/world/data.hpp"
#include "../../model/world/land.hpp"
@ -15,6 +16,7 @@
#include "../../model/world/commands.hpp"
#include "../../model/world/idtable.hpp"
#include "../../model/world/landtexture.hpp"
#endif
namespace CSVWidget
{

View file

@ -3,7 +3,9 @@
#include <QWidget>
#ifndef Q_MOC_RUN
#include <boost/filesystem/path.hpp>
#endif
class QPushButton;
class QListWidget;

View file

@ -14,9 +14,11 @@
#include <QHBoxLayout>
#include <QPushButton>
#ifndef Q_MOC_RUN
#include "scenetool.hpp"
#include "../../model/doc/document.hpp"
#endif
class QTableWidget;

View file

@ -5,10 +5,12 @@
#include <QWidget>
#ifndef Q_MOC_RUN
#include "../../model/doc/document.hpp"
#include "../../model/world/scope.hpp"
#include "../../model/world/universalid.hpp"
#endif
namespace CSMDoc
{

View file

@ -8,11 +8,13 @@
#include <QAbstractItemDelegate>
#include <QScrollArea>
#ifndef Q_MOC_RUN
#include "../doc/subview.hpp"
#include "../../model/world/columnbase.hpp"
#include "../../model/world/commanddispatcher.hpp"
#include "../../model/world/universalid.hpp"
#endif
class QDataWidgetMapper;
class QSize;

View file

@ -6,8 +6,11 @@
#include <QAbstractTableModel>
#include <QStyledItemDelegate>
#ifndef Q_MOC_RUN
#include "../../model/world/columnbase.hpp"
#include "../../model/doc/document.hpp"
#endif
class QUndoStack;

View file

@ -9,9 +9,10 @@
#ifndef Q_MOC_RUN
#include <components/files/configurationmanager.hpp>
#endif
#include <components/config/gamesettings.hpp>
#include <components/config/launchersettings.hpp>
#endif
namespace Wizard
{