vcl/quartz/salgdi.cxx |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 38ee2883fbebb59b6775e7027b4b7ec799c0fc6f
Author:     Stephan Bergmann <stephan.bergm...@allotropia.de>
AuthorDate: Thu Jan 2 13:52:34 2025 +0100
Commit:     Stephan Bergmann <stephan.bergm...@allotropia.de>
CommitDate: Thu Jan 2 22:20:46 2025 +0100

    loplugin:indentation
    
    > vcl/quartz/salgdi.cxx:151:5: error: else body should be indented 
[loplugin:indentation]
    >   151 |     mpBackend.reset(new AquaGraphicsBackend(maShared));
    >       |     ^
    
    Change-Id: I6b6ee344e05080219efa8ab2e4ae21923e833c75
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/179617
    Tested-by: Jenkins
    Reviewed-by: Stephan Bergmann <stephan.bergm...@allotropia.de>

diff --git a/vcl/quartz/salgdi.cxx b/vcl/quartz/salgdi.cxx
index ab09718d86a7..92ddc95b296c 100644
--- a/vcl/quartz/salgdi.cxx
+++ b/vcl/quartz/salgdi.cxx
@@ -145,10 +145,11 @@ AquaSalGraphics::AquaSalGraphics(bool bPrinter)
     if(!bPrinter && SkiaHelper::isVCLSkiaEnabled())
         mpBackend.reset(new AquaSkiaSalGraphicsImpl(*this, maShared));
     else
+        mpBackend.reset(new AquaGraphicsBackend(maShared));
 #else
     (void)bPrinter;
-#endif
     mpBackend.reset(new AquaGraphicsBackend(maShared));
+#endif
 
     for (int i = 0; i < MAX_FALLBACK; ++i)
         mpFont[i] = nullptr;
  • core.git: vcl/quartz Stephan Bergmann (via logerrit)

Reply via email to