Kaydet (Commit) 4c363dd6 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Typo in HAVE_BROKEN_STATIC_INITILIZER_LIST

Change-Id: Ia29868d1832b529d438a5a5448b751683c226846
üst f0070f53
......@@ -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
......
......@@ -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
......
......@@ -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 = {
......
......@@ -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 =
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment