diff --git a/src/Gui/Inventor/SoFCPlacementIndicatorKit.cpp b/src/Gui/Inventor/SoFCPlacementIndicatorKit.cpp index d794b4d4e5..2da7d24382 100644 --- a/src/Gui/Inventor/SoFCPlacementIndicatorKit.cpp +++ b/src/Gui/Inventor/SoFCPlacementIndicatorKit.cpp @@ -50,7 +50,7 @@ #include #include #include -#include +#include #include #include @@ -152,7 +152,7 @@ SoSeparator* SoFCPlacementIndicatorKit::createAxes() Base::Vector3d axis, uint32_t packedColor, const double offset) { - App::Color axisColor(packedColor); + Base::Color axisColor(packedColor); auto sep = new SoSeparator; @@ -265,7 +265,7 @@ SoSeparator* SoFCPlacementIndicatorKit::createPlaneIndicator() pcCylinder->radius = planeIndicatorRadius; pcCylinder->parts = SoCylinder::TOP; - const auto gray = App::Color(0.75f, 0.75f, 0.75f); + const auto gray = Base::Color(0.75f, 0.75f, 0.75f); auto pcMaterial = new SoMaterial(); pcMaterial->diffuseColor.setValue(Base::convertTo(gray)); @@ -284,4 +284,4 @@ SoSeparator* SoFCPlacementIndicatorKit::createPlaneIndicator() SoFCPlacementIndicatorKit::~SoFCPlacementIndicatorKit() = default; -} // namespace Gui \ No newline at end of file +} // namespace Gui