comphelper/source/misc/lok.cxx |    2 ++
 vcl/headless/headlessinst.cxx  |    3 +--
 2 files changed, 3 insertions(+), 2 deletions(-)

New commits:
commit 9d158bf70633d0e04bc661bd8cfc6411b349d0f2
Author:     Stephan Bergmann <[email protected]>
AuthorDate: Thu Dec 11 11:29:06 2025 +0100
Commit:     Stephan Bergmann <[email protected]>
CommitDate: Fri Dec 12 08:03:53 2025 +0100

    loplugin:casttovoid
    
    Change-Id: Iebd463e83281f8aca119a87fe7cb30c3698935f0
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/195443
    Tested-by: Jenkins
    Reviewed-by: Stephan Bergmann <[email protected]>

diff --git a/vcl/headless/headlessinst.cxx b/vcl/headless/headlessinst.cxx
index d8a8b63fbdd9..a7902d2c308d 100644
--- a/vcl/headless/headlessinst.cxx
+++ b/vcl/headless/headlessinst.cxx
@@ -30,9 +30,8 @@ public:
     HeadlessSalSystem() : SvpSalSystem() {}
     virtual int ShowNativeDialog( const OUString& rTitle,
                                   const OUString& rMessage,
-                                  const std::vector< OUString >& rButtons ) 
override
+                                  const std::vector< OUString >& ) override
     {
-        (void)rButtons;
         SAL_INFO("vcl.headless",
                 "LibreOffice - dialog '"
                 << rTitle << "': '"
commit a6325b777b7bb9e1c760a4f1a02d48ba0889a7b1
Author:     Stephan Bergmann <[email protected]>
AuthorDate: Thu Dec 11 17:04:00 2025 +0100
Commit:     Stephan Bergmann <[email protected]>
CommitDate: Fri Dec 12 08:03:38 2025 +0100

    Missing include
    
    ...for PATH_MAX, after 6112dac3ab1d60097255e227f475aaff3d49d2a0 "cool#13770 
lok:
    add a file save dialog callback"
    
    Change-Id: I976c5ca00c441896042b3eb4565e386c717e4d4b
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/195478
    Tested-by: Jenkins
    Reviewed-by: Stephan Bergmann <[email protected]>

diff --git a/comphelper/source/misc/lok.cxx b/comphelper/source/misc/lok.cxx
index 2ddf430c521c..b7365b14418b 100644
--- a/comphelper/source/misc/lok.cxx
+++ b/comphelper/source/misc/lok.cxx
@@ -16,6 +16,8 @@
 #include <sal/log.hxx>
 #ifdef _WIN32
 #include <tools/UnixWrappers.h>
+#else
+#include <limits.h>
 #endif
 
 #include <iostream>

Reply via email to