diff options
-rw-r--r-- | config_host/config_global.h.in | 2 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | oox/source/export/shapes.cxx | 4 | ||||
-rw-r--r-- | xmlsecurity/source/helper/ooxmlsecexporter.cxx | 4 |
4 files changed, 6 insertions, 6 deletions
diff --git a/config_host/config_global.h.in b/config_host/config_global.h.in index c7c5987cd19d..dd959a9fd170 100644 --- a/config_host/config_global.h.in +++ b/config_host/config_global.h.in @@ -22,7 +22,7 @@ Any change in this header will cause a rebuild of almost everything. #define HAVE_GCC_DEPRECATED_MESSAGE 0 #define HAVE_THREADSAFE_STATICS 0 #define HAVE_BROKEN_CONST_ITERATORS 0 -#define HAVE_BROKEN_STATIC_INITILIZER_LIST 0 +#define HAVE_BROKEN_STATIC_INITIALIZER_LIST 0 #define HAVE_SYSLOG_H 0 /* Compiler supports __attribute__((warn_unused)). */ #define HAVE_GCC_ATTRIBUTE_WARN_UNUSED 0 diff --git a/configure.ac b/configure.ac index 9b88fd480e9c..7ee051c8b766 100644 --- a/configure.ac +++ b/configure.ac @@ -12692,7 +12692,7 @@ LIBS=$save_LIBS CXXFLAGS=$save_CXXFLAGS AC_MSG_RESULT([$broken]) if test "$broken" = yes; then - AC_DEFINE([HAVE_BROKEN_STATIC_INITILIZER_LIST]) + AC_DEFINE([HAVE_BROKEN_STATIC_INITIALIZER_LIST]) fi diff --git a/oox/source/export/shapes.cxx b/oox/source/export/shapes.cxx index f7e84db57784..f8339025d11f 100644 --- a/oox/source/export/shapes.cxx +++ b/oox/source/export/shapes.cxx @@ -535,7 +535,7 @@ ShapeExport& ShapeExport::WriteGroupShape(uno::Reference<drawing::XShape> xShape static bool lcl_IsOnBlacklist(OUString& rShapeType) { -#if !HAVE_BROKEN_STATIC_INITILIZER_LIST +#if !HAVE_BROKEN_STATIC_INITIALIZER_LIST static #endif const std::initializer_list<OUStringLiteral> vBlacklist = { @@ -601,7 +601,7 @@ static bool lcl_IsOnBlacklist(OUString& rShapeType) static bool lcl_IsOnWhitelist(OUString& rShapeType) { -#if !HAVE_BROKEN_STATIC_INITILIZER_LIST +#if !HAVE_BROKEN_STATIC_INITIALIZER_LIST static #endif const std::initializer_list<OUStringLiteral> vWhitelist = { diff --git a/xmlsecurity/source/helper/ooxmlsecexporter.cxx b/xmlsecurity/source/helper/ooxmlsecexporter.cxx index d88d542ce4fa..590d33ead7aa 100644 --- a/xmlsecurity/source/helper/ooxmlsecexporter.cxx +++ b/xmlsecurity/source/helper/ooxmlsecexporter.cxx @@ -74,7 +74,7 @@ struct OOXMLSecExporter::Impl bool OOXMLSecExporter::Impl::isOOXMLBlacklist(const OUString& rStreamName) { -#if !HAVE_BROKEN_STATIC_INITILIZER_LIST +#if !HAVE_BROKEN_STATIC_INITIALIZER_LIST static #endif const std::initializer_list<OUStringLiteral> vBlacklist = @@ -94,7 +94,7 @@ bool OOXMLSecExporter::Impl::isOOXMLBlacklist(const OUString& rStreamName) bool OOXMLSecExporter::Impl::isOOXMLRelationBlacklist(const OUString& rRelationName) { -#if !HAVE_BROKEN_STATIC_INITILIZER_LIST +#if !HAVE_BROKEN_STATIC_INITIALIZER_LIST static #endif const std::initializer_list<OUStringLiteral> vBlacklist = |