summaryrefslogtreecommitdiff
path: root/sw/source/filter/ww8/rtfsdrexport.hxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2014-05-11 18:24:44 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2014-05-11 18:46:41 +0200
commit1a4d24b3a430ed7f75e76e64fb0e22d05a1fad0d (patch)
tree8a7fe6949df55191161641c45c81fb55f96ef2d2 /sw/source/filter/ww8/rtfsdrexport.hxx
parentb05778b9c0e21e3b8fd9d8baa03864e6f0b9b407 (diff)
sw: fix indentation in rtfsdrexport
Change-Id: I5499007c88659b2d235c765ba352e2bc4a8a3eb8
Diffstat (limited to 'sw/source/filter/ww8/rtfsdrexport.hxx')
-rw-r--r--sw/source/filter/ww8/rtfsdrexport.hxx26
1 files changed, 13 insertions, 13 deletions
diff --git a/sw/source/filter/ww8/rtfsdrexport.hxx b/sw/source/filter/ww8/rtfsdrexport.hxx
index c2e82d99d7ef..449a53850f7a 100644
--- a/sw/source/filter/ww8/rtfsdrexport.hxx
+++ b/sw/source/filter/ww8/rtfsdrexport.hxx
@@ -32,9 +32,9 @@ class RtfAttributeOutput;
/// Handles export of drawings using RTF markup
class RtfSdrExport : public EscherEx
{
- RtfExport &m_rExport;
+ RtfExport& m_rExport;
- RtfAttributeOutput &m_rAttrOutput;
+ RtfAttributeOutput& m_rAttrOutput;
const SdrObject* m_pSdrObject;
@@ -45,21 +45,21 @@ class RtfSdrExport : public EscherEx
sal_uInt32 m_nShapeFlags;
/// Remember style, the most important shape attribute ;-)
- OStringBuffer *m_pShapeStyle;
+ OStringBuffer* m_pShapeStyle;
std::map<OString,OString> m_aShapeProps;
/// Remember which shape types we had already written.
- bool *m_pShapeTypeWritten;
+ bool* m_pShapeTypeWritten;
public:
- RtfSdrExport( RtfExport &rExport );
+ RtfSdrExport(RtfExport& rExport);
virtual ~RtfSdrExport();
/// Export the sdr object as Sdr.
///
/// Call this when you need to export the object as Sdr in RTF.
- sal_uInt32 AddSdrObject( const SdrObject& rObj );
+ sal_uInt32 AddSdrObject(const SdrObject& rObj);
protected:
/// Start the shape for which we just collected the information.
@@ -72,26 +72,26 @@ protected:
///
/// The parameter is just what we got from StartShape().
using EscherEx::EndShape;
- void EndShape( sal_Int32 nShapeElement );
+ void EndShape(sal_Int32 nShapeElement);
- virtual void Commit( EscherPropertyContainer& rProps, const Rectangle& rRect ) SAL_OVERRIDE;
+ virtual void Commit(EscherPropertyContainer& rProps, const Rectangle& rRect) SAL_OVERRIDE;
private:
- virtual void OpenContainer( sal_uInt16 nEscherContainer, int nRecInstance = 0 ) SAL_OVERRIDE;
+ virtual void OpenContainer(sal_uInt16 nEscherContainer, int nRecInstance = 0) SAL_OVERRIDE;
virtual void CloseContainer() SAL_OVERRIDE;
- virtual sal_uInt32 EnterGroup( const OUString& rShapeName, const Rectangle* pBoundRect = 0 ) SAL_OVERRIDE;
+ virtual sal_uInt32 EnterGroup(const OUString& rShapeName, const Rectangle* pBoundRect = 0) SAL_OVERRIDE;
virtual void LeaveGroup() SAL_OVERRIDE;
- virtual void AddShape( sal_uInt32 nShapeType, sal_uInt32 nShapeFlags, sal_uInt32 nShapeId = 0 ) SAL_OVERRIDE;
+ virtual void AddShape(sal_uInt32 nShapeType, sal_uInt32 nShapeFlags, sal_uInt32 nShapeId = 0) SAL_OVERRIDE;
private:
/// Add starting and ending point of a line to the m_pShapeAttrList.
- void AddLineDimensions( const Rectangle& rRectangle );
+ void AddLineDimensions(const Rectangle& rRectangle);
/// Add position and size to the OStringBuffer.
- void AddRectangleDimensions( OStringBuffer& rBuffer, const Rectangle& rRectangle );
+ void AddRectangleDimensions(OStringBuffer& rBuffer, const Rectangle& rRectangle);
void WriteOutliner(const OutlinerParaObject& rParaObj);