diff options
author | Mike Kaganski <mike.kaganski@collabora.com> | 2016-06-28 21:23:31 +1000 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-06-28 13:12:09 +0000 |
commit | c9f05625a7d34bed2229d59466420cd56f904c41 (patch) | |
tree | 75e06564b32d9d4ad6c334dc6abfcd603ee56a6a /svx | |
parent | 442dd6a153385d7c2826eabe0737d4d53332f392 (diff) |
Revert c7b9b9204ce2b3c1e0dbc0d79e4e01d27ad2ac7e
Also make changes to make loplugin:staticmethods happy
Change-Id: Ia55d063c0fa5a1d9392e09f23ebb1266f46745b9
Reviewed-on: https://gerrit.libreoffice.org/26740
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Tested-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/svdraw/svdmodel.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/svx/source/svdraw/svdmodel.cxx b/svx/source/svdraw/svdmodel.cxx index 0b051f6cce18..5c662896f6f1 100644 --- a/svx/source/svdraw/svdmodel.cxx +++ b/svx/source/svdraw/svdmodel.cxx @@ -1933,7 +1933,8 @@ void SdrModel::ReadUserDataSequenceValue(const css::beans::PropertyValue* /*pVal void SdrModel::WriteUserDataSequence(css::uno::Sequence < css::beans::PropertyValue >& rValues, bool /*bBrowse*/) { std::vector< std::pair< OUString, Any > > aUserData; - // TODO: addPair(aUserData, "PropName", PropValue); + (void) this; + // TODO: Write common model-level properties (e.g. to settings.xml) const sal_Int32 nOldLength = rValues.getLength(); rValues.realloc(nOldLength + aUserData.size()); |