summaryrefslogtreecommitdiff
path: root/framework/inc/services/uriabbreviation.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'framework/inc/services/uriabbreviation.hxx')
-rw-r--r--framework/inc/services/uriabbreviation.hxx18
1 files changed, 10 insertions, 8 deletions
diff --git a/framework/inc/services/uriabbreviation.hxx b/framework/inc/services/uriabbreviation.hxx
index 200296da2df9..f4e3ef10dc4b 100644
--- a/framework/inc/services/uriabbreviation.hxx
+++ b/framework/inc/services/uriabbreviation.hxx
@@ -28,23 +28,25 @@
namespace framework
{
-
-class UriAbbreviation final : public ::cppu::WeakImplHelper< css::util::XStringAbbreviation, css::lang::XServiceInfo>
+class UriAbbreviation final
+ : public ::cppu::WeakImplHelper<css::util::XStringAbbreviation, css::lang::XServiceInfo>
{
public:
- explicit UriAbbreviation(css::uno::Reference< css::uno::XComponentContext > const & context);
+ explicit UriAbbreviation(css::uno::Reference<css::uno::XComponentContext> const& context);
/* interface XServiceInfo */
virtual OUString SAL_CALL getImplementationName() override;
- virtual sal_Bool SAL_CALL supportsService( const OUString& sServiceName ) override;
- virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
+ virtual sal_Bool SAL_CALL supportsService(const OUString& sServiceName) override;
+ virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() override;
// css::util::XStringAbbreviation:
- virtual OUString SAL_CALL abbreviateString(const css::uno::Reference< css::util::XStringWidth > & xStringWidth, ::sal_Int32 nWidth, const OUString & aString) override;
+ virtual OUString SAL_CALL
+ abbreviateString(const css::uno::Reference<css::util::XStringWidth>& xStringWidth,
+ ::sal_Int32 nWidth, const OUString& aString) override;
private:
- UriAbbreviation(UriAbbreviation const &) = delete;
- UriAbbreviation& operator =(UriAbbreviation const &) = delete;
+ UriAbbreviation(UriAbbreviation const&) = delete;
+ UriAbbreviation& operator=(UriAbbreviation const&) = delete;
virtual ~UriAbbreviation() override {}
};