From 02f2f1c1bfc04f6a63f7ada828e220ab4a6fa2fb Mon Sep 17 00:00:00 2001 From: Brad Davis Date: Wed, 4 Feb 2015 14:36:03 -0800 Subject: [PATCH] Fixing header order and code style --- libraries/render-utils/src/TextRenderer.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/libraries/render-utils/src/TextRenderer.cpp b/libraries/render-utils/src/TextRenderer.cpp index a02a156409..9d0431982e 100644 --- a/libraries/render-utils/src/TextRenderer.cpp +++ b/libraries/render-utils/src/TextRenderer.cpp @@ -9,8 +9,6 @@ // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html // -#include "TextRenderer.h" -#include "MatrixStack.h" #include #include @@ -36,6 +34,9 @@ #include "FontRoboto.h" #include "FontTimeless.h" #include "FontCourierPrime.h" +#include "MatrixStack.h" + +#include "TextRenderer.h" namespace Shaders { // Normally we could use 'enum class' to avoid namespace pollution, @@ -231,7 +232,7 @@ public: float maxWidth) const; }; -static QHash LOADED_FONTS; +static QHash LOADED_FONTS; Font * loadFont(QIODevice & buffer) { Font * result = new Font();