sfx2/source/appl/appserv.cxx   |    6 ------
 vcl/qa/cppunit/BackendTest.cxx |    2 ++
 2 files changed, 2 insertions(+), 6 deletions(-)

New commits:
commit 6b028748b496fbbb8de8a98097b68071871cc63d
Author:     Andras Timar <[email protected]>
AuthorDate: Sat Jan 17 15:16:35 2026 +0100
Commit:     Andras Timar <[email protected]>
CommitDate: Sat Jan 17 17:03:41 2026 +0100

    build fix: [-Werror,-Wundef] missing include
    
    'ENABLE_CAIRO_RGBA' is not defined, evaluates to 0 [-Werror,-Wundef]
      503 | #if !ENABLE_CAIRO_RGBA
          |      ^
    
    Change-Id: Ib0f6289d70a385b5fd85947393c349b75170aa5d
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/197497
    Tested-by: Jenkins CollaboraOffice <[email protected]>
    Reviewed-by: Andras Timar <[email protected]>

diff --git a/vcl/qa/cppunit/BackendTest.cxx b/vcl/qa/cppunit/BackendTest.cxx
index 60fc689b5f14..cf61b74baa85 100644
--- a/vcl/qa/cppunit/BackendTest.cxx
+++ b/vcl/qa/cppunit/BackendTest.cxx
@@ -22,6 +22,8 @@
 
 #include <test/outputdevice.hxx>
 
+#include <config_cairo_rgba.h>
+
 // Run tests from visualbackendtest ('bin/run visualbackendtest').
 class BackendTest : public test::BootstrapFixture
 {
commit 35ee72bf4877f81cd80988b6c34024e482bc55db
Author:     Andras Timar <[email protected]>
AuthorDate: Sat Jan 17 14:21:44 2026 +0100
Commit:     Andras Timar <[email protected]>
CommitDate: Sat Jan 17 17:03:30 2026 +0100

    [cp] fix loplugin:unnecessaryoverride
    
    It's a fix to
        [cp] add EULA button to Help - License Information... dialog
    
    Change-Id: Ib780f62e2e51d149b8877d0a949c899fd6bf3433
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/197492
    Reviewed-by: Andras Timar <[email protected]>
    Tested-by: Andras Timar <[email protected]>

diff --git a/sfx2/source/appl/appserv.cxx b/sfx2/source/appl/appserv.cxx
index 507b993b0c8e..537301988ee8 100644
--- a/sfx2/source/appl/appserv.cxx
+++ b/sfx2/source/appl/appserv.cxx
@@ -318,12 +318,6 @@ namespace
             m_xBtnLicense->connect_clicked( LINK(this, LicenseDialog, 
LicenseHdl) );
             m_xBtnEula->connect_clicked( LINK(this, LicenseDialog, EulaHdl) );
         }
-
-        virtual short run() override
-        {
-            short nRet = GenericDialogController::run();
-            return nRet;
-        }
     };
 
     IMPL_LINK_NOARG(LicenseDialog, EulaHdl, weld::Button&, void)

Reply via email to