summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2016-05-08 08:25:31 +0300
committerTor Lillqvist <tml@collabora.com>2016-05-08 08:25:55 +0300
commitbd55be7ec88b1b8af3eb0b3b98be4f73453f9f89 (patch)
tree6e5696014116d23c261a48a44f4b7f5553f0bf7f
parentc01a98e42c2cc2e130c738d0656f7446aea2e119 (diff)
-Werror=missing-field-initializers.
Add missing initializer for member ‘comphelper::PropertyInfo::mnMemberId’. Change-Id: Id8c1adb24c68432ddbf6b491c419f359d228286a
-rw-r--r--sw/source/uibase/uno/SwXDocumentSettings.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/uibase/uno/SwXDocumentSettings.cxx b/sw/source/uibase/uno/SwXDocumentSettings.cxx
index 8b7083a19afc..1d0df1b2fc1d 100644
--- a/sw/source/uibase/uno/SwXDocumentSettings.cxx
+++ b/sw/source/uibase/uno/SwXDocumentSettings.cxx
@@ -207,7 +207,7 @@ static MasterPropertySetInfo * lcl_createSettingsInfo()
{ OUString("ApplyParagraphMarkFormatToNumbering"), HANDLE_APPLY_PARAGRAPH_MARK_FORMAT_TO_NUMBERING, cppu::UnoType<bool>::get(), 0, 0},
{ OUString("PropLineSpacingShrinksFirstLine"), HANDLE_PROP_LINE_SPACING_SHRINKS_FIRST_LINE, cppu::UnoType<bool>::get(), 0, 0},
{ OUString("SubtractFlysAnchoredAtFlys"), HANDLE_SUBTRACT_FLYS, cppu::UnoType<bool>::get(), 0, 0},
- { OUString("InBrowseMode"), HANDLE_BROWSE_MODE, cppu::UnoType<bool>::get(), 0},
+ { OUString("InBrowseMode"), HANDLE_BROWSE_MODE, cppu::UnoType<bool>::get(), 0, 0},
/*
* As OS said, we don't have a view when we need to set this, so I have to
* find another solution before adding them to this property set - MTG