From 8f968384f821019ccd06223cb0145944d45488ea Mon Sep 17 00:00:00 2001 From: Uwe Date: Tue, 29 Nov 2022 01:38:34 +0100 Subject: [PATCH] [skip ci] [Gui] NaviCube: remove tabs - as detected by the CI --- src/Gui/NaviCube.cpp | 54 ++++++++++++++++++++++---------------------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/src/Gui/NaviCube.cpp b/src/Gui/NaviCube.cpp index 2b17c50068..8f4217236f 100644 --- a/src/Gui/NaviCube.cpp +++ b/src/Gui/NaviCube.cpp @@ -79,34 +79,34 @@ using namespace Gui; class Face { public: - int m_FirstVertex; - int m_VertexCount; - GLuint m_TextureId; - QColor m_Color; - int m_PickId; - int m_PickTexId; - GLuint m_PickTextureId; - int m_RenderPass; - Face( - int firstVertex, - int vertexCount, - GLuint textureId, - int pickId, - int pickTexId, - GLuint pickTextureId, - const QColor& color, - int renderPass + int m_FirstVertex; + int m_VertexCount; + GLuint m_TextureId; + QColor m_Color; + int m_PickId; + int m_PickTexId; + GLuint m_PickTextureId; + int m_RenderPass; + Face( + int firstVertex, + int vertexCount, + GLuint textureId, + int pickId, + int pickTexId, + GLuint pickTextureId, + const QColor& color, + int renderPass ) - { - m_FirstVertex = firstVertex; - m_VertexCount = vertexCount; - m_TextureId = textureId; - m_PickId = pickId; - m_PickTexId = pickTexId; - m_PickTextureId = pickTextureId; - m_Color = color; - m_RenderPass = renderPass; - } + { + m_FirstVertex = firstVertex; + m_VertexCount = vertexCount; + m_TextureId = textureId; + m_PickId = pickId; + m_PickTexId = pickTexId; + m_PickTextureId = pickTextureId; + m_Color = color; + m_RenderPass = renderPass; + } }; class NaviCubeImplementation : public ParameterGrp::ObserverType {