diff options
author | Philipp Hofer <philipp.hofer@protonmail.com> | 2020-11-12 12:54:26 +0100 |
---|---|---|
committer | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2020-11-13 15:15:34 +0100 |
commit | eedafe6e5c1c1f598170e6349c29ed19437d1f8c (patch) | |
tree | f4b2dc05c217ce6cae998bb1adb04968c4e44fe4 /desktop/source/deployment/manager | |
parent | fddcbd5d28bb58993ee3d210f1d11e57c70a8894 (diff) |
tdf#123936 Formatting files in module desktop with clang-format
Change-Id: I39856d77a2ef506612b68fccfd0ba9c9d6b1debc
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105661
Tested-by: Jenkins
Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
Diffstat (limited to 'desktop/source/deployment/manager')
-rw-r--r-- | desktop/source/deployment/manager/dp_properties.hxx | 30 |
1 files changed, 13 insertions, 17 deletions
diff --git a/desktop/source/deployment/manager/dp_properties.hxx b/desktop/source/deployment/manager/dp_properties.hxx index bc928b8aecf6..d87e2951ccb2 100644 --- a/desktop/source/deployment/manager/dp_properties.hxx +++ b/desktop/source/deployment/manager/dp_properties.hxx @@ -19,35 +19,32 @@ #pragma once - #include <com/sun/star/beans/NamedValue.hpp> #include <com/sun/star/ucb/XCommandEnvironment.hpp> #include <com/sun/star/uno/XComponentContext.hpp> #include <optional> - -namespace dp_manager { - - +namespace dp_manager +{ class ExtensionProperties final { OUString m_propFileUrl; const css::uno::Reference<css::ucb::XCommandEnvironment> m_xCmdEnv; const css::uno::Reference<css::uno::XComponentContext> m_xContext; - ::std::optional< OUString> m_prop_suppress_license; - ::std::optional< OUString> m_prop_extension_update; + ::std::optional<OUString> m_prop_suppress_license; + ::std::optional<OUString> m_prop_extension_update; - static OUString getPropertyValue(css::beans::NamedValue const & v); -public: + static OUString getPropertyValue(css::beans::NamedValue const& v); - ExtensionProperties(OUString const & urlExtension, - css::uno::Reference<css::ucb::XCommandEnvironment> const & xCmdEnv, - css::uno::Reference<css::uno::XComponentContext> const & xContext); +public: + ExtensionProperties(OUString const& urlExtension, + css::uno::Reference<css::ucb::XCommandEnvironment> const& xCmdEnv, + css::uno::Reference<css::uno::XComponentContext> const& xContext); - ExtensionProperties(OUString const & urlExtension, - css::uno::Sequence<css::beans::NamedValue> const & properties, - css::uno::Reference<css::ucb::XCommandEnvironment> const & xCmdEnv, - css::uno::Reference<css::uno::XComponentContext> const & xContext); + ExtensionProperties(OUString const& urlExtension, + css::uno::Sequence<css::beans::NamedValue> const& properties, + css::uno::Reference<css::ucb::XCommandEnvironment> const& xCmdEnv, + css::uno::Reference<css::uno::XComponentContext> const& xContext); void write(); @@ -57,5 +54,4 @@ public: }; } - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |