diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2020-05-18 15:01:28 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2020-05-18 22:51:45 +0200 |
commit | 6cc4aa93baed7916705b43ddce5dbb7c031e9997 (patch) | |
tree | 3488dcb8a5adde086a09d2060f598752d025a7b4 /include/comphelper | |
parent | acc8ff577b2087fa2734b569a9606d9acac09c2e (diff) |
comphelper, drawinglayer, framework, starmath: clang-format these files
I added these files more or less recently and they have long lines. Use
clang-format to break at a sane column limit.
Change-Id: Id608fffbbc0673c9bc350dd696cb0a31906840d3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/94423
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Tested-by: Jenkins
Diffstat (limited to 'include/comphelper')
-rw-r--r-- | include/comphelper/propertyvalue.hxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/comphelper/propertyvalue.hxx b/include/comphelper/propertyvalue.hxx index 3415d2304f83..85f3d67385c6 100644 --- a/include/comphelper/propertyvalue.hxx +++ b/include/comphelper/propertyvalue.hxx @@ -18,7 +18,6 @@ namespace comphelper { - /** * Creates a beans::PropertyValue easily, i.e. you can write: * @@ -26,14 +25,13 @@ namespace comphelper * * instead of writing 3 extra lines to set the name and value of the beans::PropertyValue. */ -template<typename T> css::beans::PropertyValue makePropertyValue(const OUString& rName, T&& rValue) +template <typename T> css::beans::PropertyValue makePropertyValue(const OUString& rName, T&& rValue) { css::beans::PropertyValue aValue; aValue.Name = rName; aValue.Value = css::uno::toAny(std::forward<T>(rValue)); return aValue; } - } #endif // INCLUDED_COMPHELPER_PROPERTYVALUE_HXX |