Skip to content

Commit

Permalink
move includes to repsect PCH option
Browse files Browse the repository at this point in the history
  • Loading branch information
wwmayer committed May 25, 2019
1 parent bf38ae9 commit 4072b2c
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 21 deletions.
7 changes: 3 additions & 4 deletions src/Mod/TechDraw/App/Cosmetic.cpp
Expand Up @@ -22,12 +22,11 @@

#include "PreCompiled.h"
#ifndef _PreComp_
# include <TopoDS_Edge.hxx>
# include <gp_Pnt.hxx>
# include <BRepBuilderAPI_MakeEdge.hxx>
#endif // #ifndef _PreComp_

#include <TopoDS_Edge.hxx>
#include <gp_Pnt.hxx>
#include <BRepBuilderAPI_MakeEdge.hxx>

#include <Base/Console.h>
#include <Base/Exception.h>
#include <Base/Parameter.h>
Expand Down
29 changes: 14 additions & 15 deletions src/Mod/TechDraw/Gui/CommandAnnotate.cpp
Expand Up @@ -22,6 +22,7 @@

#include "PreCompiled.h"
#ifndef _PreComp_
# include <QGraphicsView>
# include <QMessageBox>
# include <iostream>
# include <string>
Expand All @@ -30,21 +31,19 @@
# include <exception>
#endif //#ifndef _PreComp_

#include <QGraphicsView>

# include <App/DocumentObject.h>
# include <Gui/Action.h>
# include <Gui/Application.h>
# include <Gui/BitmapFactory.h>
# include <Gui/Command.h>
# include <Gui/Control.h>
# include <Gui/Document.h>
# include <Gui/Selection.h>
# include <Gui/MainWindow.h>
# include <Gui/FileDialog.h>
# include <Gui/ViewProvider.h>

# include <Mod/Part/App/PartFeature.h>
#include <App/DocumentObject.h>
#include <Gui/Action.h>
#include <Gui/Application.h>
#include <Gui/BitmapFactory.h>
#include <Gui/Command.h>
#include <Gui/Control.h>
#include <Gui/Document.h>
#include <Gui/Selection.h>
#include <Gui/MainWindow.h>
#include <Gui/FileDialog.h>
#include <Gui/ViewProvider.h>

#include <Mod/Part/App/PartFeature.h>

#include <Mod/TechDraw/App/DrawView.h>
#include <Mod/TechDraw/App/DrawViewPart.h>
Expand Down
3 changes: 1 addition & 2 deletions src/Mod/TechDraw/Gui/TaskCosVertex.cpp
Expand Up @@ -24,10 +24,9 @@

#ifndef _PreComp_
#include <cmath>
#endif // #ifndef _PreComp_

#include <QStatusBar>
#include <QGraphicsScene>
#endif // #ifndef _PreComp_

#include <Base/Console.h>
#include <Base/Tools.h>
Expand Down

0 comments on commit 4072b2c

Please sign in to comment.