remove unnecessary InitApplication.h inclusion

The InitApplication library was being unnecessarily imported into some C++ files
This commit is contained in:
Andrea
2025-04-29 10:18:47 +02:00
committed by Chris Hennes
parent 21a5261345
commit 8cc1565dcb
3 changed files with 3 additions and 2 deletions

View File

@@ -10,7 +10,6 @@
#include <App/ObjectIdentifier.h>
#include <Mod/Sketcher/App/GeoEnum.h>
#include <Mod/Sketcher/App/SketchObject.h>
#include <src/App/InitApplication.h>
#include "SketcherTestHelpers.h"
using namespace SketcherTestHelpers;

View File

@@ -6,8 +6,10 @@
#include <App/ObjectIdentifier.h>
#include <Mod/Sketcher/App/GeoEnum.h>
#include <Mod/Sketcher/App/SketchObject.h>
#include <src/App/InitApplication.h>
#include "SketcherTestHelpers.h"
void SketchObjectTest::SetUpTestSuite()
{
tests::initApplication();

View File

@@ -11,7 +11,7 @@
#include <App/ObjectIdentifier.h>
#include <Mod/Sketcher/App/GeoEnum.h>
#include <Mod/Sketcher/App/SketchObject.h>
#include <src/App/InitApplication.h>
class SketchObjectTest: public ::testing::Test
{