include/vcl/filter/PDFiumLibrary.hxx                 |    1 +
 oox/inc/drawingml/textbodycontext.hxx                |    2 ++
 oox/inc/drawingml/textparagraphpropertiescontext.hxx |    1 +
 3 files changed, 4 insertions(+)

New commits:
commit d0265596672d78ad6f3980ff6fb900535aefd11f
Author:     Jonathan Wakely <[email protected]>
AuthorDate: Wed Jan 14 22:05:59 2026 +0000
Commit:     Stephan Bergmann <[email protected]>
CommitDate: Thu Jan 15 08:41:27 2026 +0100

    Add missing <stdint.h> includes
    
    Needed for uint8_t and uint16_t. Building with GCC 16 fails without this
    change.
    
    Change-Id: I8894806940e22a13f971e5bf62f0f32d2d91a4ad
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/197303
    Tested-by: Jenkins
    Reviewed-by: Stephan Bergmann <[email protected]>

diff --git a/include/vcl/filter/PDFiumLibrary.hxx 
b/include/vcl/filter/PDFiumLibrary.hxx
index 473c52df8966..0ca23582de8f 100644
--- a/include/vcl/filter/PDFiumLibrary.hxx
+++ b/include/vcl/filter/PDFiumLibrary.hxx
@@ -11,6 +11,7 @@
 #pragma once
 
 #include <memory>
+#include <stdint.h>
 
 #include <vcl/dllapi.h>
 #include <basegfx/range/b2drectangle.hxx>
diff --git a/oox/inc/drawingml/textbodycontext.hxx 
b/oox/inc/drawingml/textbodycontext.hxx
index 36a2e1d9791d..debed75bccb6 100644
--- a/oox/inc/drawingml/textbodycontext.hxx
+++ b/oox/inc/drawingml/textbodycontext.hxx
@@ -20,6 +20,8 @@
 #ifndef INCLUDED_OOX_DRAWINGML_TEXTBODYCONTEXT_HXX
 #define INCLUDED_OOX_DRAWINGML_TEXTBODYCONTEXT_HXX
 
+#include <stdint.h>
+
 #include <drawingml/textbody.hxx>
 #include <drawingml/textrun.hxx>
 #include <oox/core/contexthandler2.hxx>
diff --git a/oox/inc/drawingml/textparagraphpropertiescontext.hxx 
b/oox/inc/drawingml/textparagraphpropertiescontext.hxx
index f0e120b2da75..6a002451e49b 100644
--- a/oox/inc/drawingml/textparagraphpropertiescontext.hxx
+++ b/oox/inc/drawingml/textparagraphpropertiescontext.hxx
@@ -21,6 +21,7 @@
 #define INCLUDED_OOX_DRAWINGML_TEXTPARAGRAPHPROPERTIESCONTEXT_HXX
 
 #include <vector>
+#include <stdint.h>
 
 #include <com/sun/star/style/TabStop.hpp>
 #include <drawingml/textparagraphproperties.hxx>

Reply via email to