Skip to content
Snippets Groups Projects
Commit 8630d110 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

Merge pull request #552 from bilke/boost-fix

Fixed some compile errors due to a moc-bug in combination with Boost
parents 7b96c804 2890d51c
No related branches found
No related tags found
No related merge requests found
...@@ -18,8 +18,6 @@ ...@@ -18,8 +18,6 @@
#include "ui_CondFromRaster.h" #include "ui_CondFromRaster.h"
#include <QDialog> #include <QDialog>
#include "Applications/ApplicationsLib/ProjectData.h"
namespace MeshLib { namespace MeshLib {
class Mesh; class Mesh;
} }
......
...@@ -18,7 +18,9 @@ ...@@ -18,7 +18,9 @@
#include "ui_MeshElementRemoval.h" #include "ui_MeshElementRemoval.h"
#include <QDialog> #include <QDialog>
#ifndef Q_MOC_RUN // See: https://bugreports.qt-project.org/browse/QTBUG-22829
#include "Applications/ApplicationsLib/ProjectData.h" #include "Applications/ApplicationsLib/ProjectData.h"
#endif
class Node; class Node;
......
...@@ -16,7 +16,10 @@ ...@@ -16,7 +16,10 @@
#define MSHMODEL_H #define MSHMODEL_H
// ** INCLUDES ** // ** INCLUDES **
#ifndef Q_MOC_RUN // See: https://bugreports.qt-project.org/browse/QTBUG-22829
#include "Applications/ApplicationsLib/ProjectData.h" #include "Applications/ApplicationsLib/ProjectData.h"
#endif
#include "TreeModel.h" #include "TreeModel.h"
namespace MeshLib { namespace MeshLib {
......
...@@ -15,7 +15,10 @@ ...@@ -15,7 +15,10 @@
#ifndef MAINWINDOW_H #ifndef MAINWINDOW_H
#define MAINWINDOW_H #define MAINWINDOW_H
#ifndef Q_MOC_RUN // See: https://bugreports.qt-project.org/browse/QTBUG-22829
#include "Applications/ApplicationsLib/ProjectData.h" #include "Applications/ApplicationsLib/ProjectData.h"
#endif
#include "ImportFileTypes.h" #include "ImportFileTypes.h"
#include "ui_mainwindow.h" #include "ui_mainwindow.h"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment