summaryrefslogtreecommitdiff
path: root/oox/source/shape/WpgContext.hxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.com>2020-05-19 15:33:44 +0200
committerMiklos Vajna <vmiklos@collabora.com>2020-05-19 16:50:45 +0200
commit868acbd97b58b200731ca25ece4019de734e5726 (patch)
treed5adac0a6a25619cb29170a0467d365849babc3e /oox/source/shape/WpgContext.hxx
parent47654bc44e4aff1b251e17c07d42f8beb8ce09c8 (diff)
oox, svx, sw, xmlsecurity: 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: Id4ef832e4843fc81f4a497385e49ccb835a7197f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/94503 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
Diffstat (limited to 'oox/source/shape/WpgContext.hxx')
-rw-r--r--oox/source/shape/WpgContext.hxx10
1 files changed, 3 insertions, 7 deletions
diff --git a/oox/source/shape/WpgContext.hxx b/oox/source/shape/WpgContext.hxx
index 363750169040..1b85cd4ec885 100644
--- a/oox/source/shape/WpgContext.hxx
+++ b/oox/source/shape/WpgContext.hxx
@@ -17,7 +17,6 @@ namespace oox
{
namespace shape
{
-
/// Wpg is the drawingML equivalent of v:group.
class WpgContext final : public oox::core::FragmentHandler2
{
@@ -25,17 +24,14 @@ public:
explicit WpgContext(oox::core::FragmentHandler2 const& rParent);
~WpgContext() override;
- oox::core::ContextHandlerRef onCreateContext(sal_Int32 nElementToken, const oox::AttributeList& rAttribs) override;
+ oox::core::ContextHandlerRef onCreateContext(sal_Int32 nElementToken,
+ const oox::AttributeList& rAttribs) override;
- const oox::drawingml::ShapePtr& getShape() const
- {
- return mpShape;
- }
+ const oox::drawingml::ShapePtr& getShape() const { return mpShape; }
private:
oox::drawingml::ShapePtr mpShape;
};
-
}
}