summaryrefslogtreecommitdiff
path: root/writerfilter
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2014-04-20 11:10:33 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2014-04-20 11:17:39 +0200
commit04fc3bc91190e5bc34b82d690bebd734f1e7d962 (patch)
tree2d33ec15a9471592a03f8d6f07a300eeb84ec664 /writerfilter
parent084e656d0ec2ee24f8dfda1345e5716c29d78d7b (diff)
writerfilter: fix indentation in rtfvalue
Change-Id: I40edb3980fe9cf9e88a7bd75b542dc44509fd74b
Diffstat (limited to 'writerfilter')
-rw-r--r--writerfilter/source/rtftok/rtfvalue.cxx116
-rw-r--r--writerfilter/source/rtftok/rtfvalue.hxx100
2 files changed, 109 insertions, 107 deletions
diff --git a/writerfilter/source/rtftok/rtfvalue.cxx b/writerfilter/source/rtftok/rtfvalue.cxx
index cf218e7d828e..3ff04d748604 100644
--- a/writerfilter/source/rtftok/rtfvalue.cxx
+++ b/writerfilter/source/rtftok/rtfvalue.cxx
@@ -10,20 +10,22 @@
#include <rtfreferenceproperties.hxx>
#include <rtfdocumentimpl.hxx>
-namespace writerfilter {
-namespace rtftok {
+namespace writerfilter
+{
+namespace rtftok
+{
RTFValue::RTFValue(int nValue, const OUString& sValue, RTFSprms rAttributes,
- RTFSprms rSprms, uno::Reference<drawing::XShape> xShape,
- uno::Reference<io::XInputStream> xStream, uno::Reference<embed::XEmbeddedObject> xObject, bool bForceString,
- RTFShape aShape)
+ RTFSprms rSprms, uno::Reference<drawing::XShape> xShape,
+ uno::Reference<io::XInputStream> xStream, uno::Reference<embed::XEmbeddedObject> xObject, bool bForceString,
+ RTFShape aShape)
: m_nValue(nValue),
- m_sValue(sValue),
- m_xShape(xShape),
- m_xStream(xStream),
- m_xObject(xObject),
- m_bForceString(bForceString)
+ m_sValue(sValue),
+ m_xShape(xShape),
+ m_xStream(xStream),
+ m_xObject(xObject),
+ m_bForceString(bForceString)
{
m_pAttributes.reset(new RTFSprms(rAttributes));
m_pSprms.reset(new RTFSprms(rSprms));
@@ -32,11 +34,11 @@ RTFValue::RTFValue(int nValue, const OUString& sValue, RTFSprms rAttributes,
RTFValue::RTFValue()
: m_nValue(0),
- m_sValue(),
- m_xShape(),
- m_xStream(),
- m_xObject(),
- m_bForceString(false)
+ m_sValue(),
+ m_xShape(),
+ m_xStream(),
+ m_xObject(),
+ m_bForceString(false)
{
m_pAttributes.reset(new RTFSprms());
m_pSprms.reset(new RTFSprms());
@@ -45,11 +47,11 @@ RTFValue::RTFValue()
RTFValue::RTFValue(int nValue)
: m_nValue(nValue),
- m_sValue(),
- m_xShape(),
- m_xStream(),
- m_xObject(),
- m_bForceString(false)
+ m_sValue(),
+ m_xShape(),
+ m_xStream(),
+ m_xObject(),
+ m_bForceString(false)
{
m_pAttributes.reset(new RTFSprms());
m_pSprms.reset(new RTFSprms());
@@ -58,11 +60,11 @@ RTFValue::RTFValue(int nValue)
RTFValue::RTFValue(const OUString& sValue, bool bForce)
: m_nValue(),
- m_sValue(sValue),
- m_xShape(),
- m_xStream(),
- m_xObject(),
- m_bForceString(bForce)
+ m_sValue(sValue),
+ m_xShape(),
+ m_xStream(),
+ m_xObject(),
+ m_bForceString(bForce)
{
m_pAttributes.reset(new RTFSprms());
m_pSprms.reset(new RTFSprms());
@@ -71,11 +73,11 @@ RTFValue::RTFValue(const OUString& sValue, bool bForce)
RTFValue::RTFValue(RTFSprms rAttributes)
: m_nValue(),
- m_sValue(),
- m_xShape(),
- m_xStream(),
- m_xObject(),
- m_bForceString(false)
+ m_sValue(),
+ m_xShape(),
+ m_xStream(),
+ m_xObject(),
+ m_bForceString(false)
{
m_pAttributes.reset(new RTFSprms(rAttributes));
m_pSprms.reset(new RTFSprms());
@@ -84,11 +86,11 @@ RTFValue::RTFValue(RTFSprms rAttributes)
RTFValue::RTFValue(RTFSprms rAttributes, RTFSprms rSprms)
: m_nValue(),
- m_sValue(),
- m_xShape(),
- m_xStream(),
- m_xObject(),
- m_bForceString(false)
+ m_sValue(),
+ m_xShape(),
+ m_xStream(),
+ m_xObject(),
+ m_bForceString(false)
{
m_pAttributes.reset(new RTFSprms(rAttributes));
m_pSprms.reset(new RTFSprms(rSprms));
@@ -97,11 +99,11 @@ RTFValue::RTFValue(RTFSprms rAttributes, RTFSprms rSprms)
RTFValue::RTFValue(uno::Reference<drawing::XShape> rShape)
: m_nValue(),
- m_sValue(),
- m_xShape(rShape),
- m_xStream(),
- m_xObject(),
- m_bForceString(false)
+ m_sValue(),
+ m_xShape(rShape),
+ m_xStream(),
+ m_xObject(),
+ m_bForceString(false)
{
m_pAttributes.reset(new RTFSprms());
m_pSprms.reset(new RTFSprms());
@@ -110,11 +112,11 @@ RTFValue::RTFValue(uno::Reference<drawing::XShape> rShape)
RTFValue::RTFValue(uno::Reference<io::XInputStream> rStream)
: m_nValue(),
- m_sValue(),
- m_xShape(),
- m_xStream(rStream),
- m_xObject(),
- m_bForceString(false)
+ m_sValue(),
+ m_xShape(),
+ m_xStream(rStream),
+ m_xObject(),
+ m_bForceString(false)
{
m_pAttributes.reset(new RTFSprms());
m_pSprms.reset(new RTFSprms());
@@ -123,11 +125,11 @@ RTFValue::RTFValue(uno::Reference<io::XInputStream> rStream)
RTFValue::RTFValue(uno::Reference<embed::XEmbeddedObject> xObject)
: m_nValue(),
- m_sValue(),
- m_xShape(),
- m_xStream(),
- m_xObject(xObject),
- m_bForceString(false)
+ m_sValue(),
+ m_xShape(),
+ m_xStream(),
+ m_xObject(xObject),
+ m_bForceString(false)
{
m_pAttributes.reset(new RTFSprms());
m_pSprms.reset(new RTFSprms());
@@ -136,11 +138,11 @@ RTFValue::RTFValue(uno::Reference<embed::XEmbeddedObject> xObject)
RTFValue::RTFValue(RTFShape aShape)
: m_nValue(),
- m_sValue(),
- m_xShape(),
- m_xStream(),
- m_xObject(),
- m_bForceString(false)
+ m_sValue(),
+ m_xShape(),
+ m_xStream(),
+ m_xObject(),
+ m_bForceString(false)
{
m_pAttributes.reset(new RTFSprms());
m_pSprms.reset(new RTFSprms());
@@ -192,9 +194,7 @@ RTFShape& RTFValue::getShape() const
writerfilter::Reference<Properties>::Pointer_t RTFValue::getProperties()
{
- writerfilter::Reference<Properties>::Pointer_t const pProperties(
- new RTFReferenceProperties(*m_pAttributes, *m_pSprms)
- );
+ writerfilter::Reference<Properties>::Pointer_t pProperties(new RTFReferenceProperties(*m_pAttributes, *m_pSprms));
return pProperties;
}
diff --git a/writerfilter/source/rtftok/rtfvalue.hxx b/writerfilter/source/rtftok/rtfvalue.hxx
index c3b5fa09c2ed..85d9aeb6137d 100644
--- a/writerfilter/source/rtftok/rtfvalue.hxx
+++ b/writerfilter/source/rtftok/rtfvalue.hxx
@@ -14,55 +14,57 @@
#include <com/sun/star/io/XInputStream.hpp>
#include <com/sun/star/embed/XEmbeddedObject.hpp>
-namespace writerfilter {
- namespace rtftok {
- class RTFSprms;
- class RTFShape;
- /// Value of an RTF keyword
- class RTFValue
- : public Value
- {
- public:
- typedef boost::shared_ptr<RTFValue> Pointer_t;
- RTFValue(int nValue, const OUString& sValue, RTFSprms rAttributes, RTFSprms rSprms, uno::Reference<drawing::XShape> rShape,
- uno::Reference<io::XInputStream> rStream, uno::Reference<embed::XEmbeddedObject> rObject, bool bForceString,
- RTFShape aShape);
- RTFValue();
- RTFValue(int nValue);
- RTFValue(const OUString& sValue, bool bForce = false);
- RTFValue(RTFSprms rAttributes);
- RTFValue(RTFSprms rAttributes, RTFSprms rSprms);
- RTFValue(uno::Reference<drawing::XShape> rShape);
- RTFValue(uno::Reference<io::XInputStream> rStream);
- RTFValue(uno::Reference<embed::XEmbeddedObject> rObject);
- RTFValue(RTFShape aShape);
- virtual ~RTFValue();
- void setString(const OUString& sValue);
- virtual int getInt() const SAL_OVERRIDE;
- virtual OUString getString() const SAL_OVERRIDE;
- virtual uno::Any getAny() const SAL_OVERRIDE;
- virtual writerfilter::Reference<Properties>::Pointer_t getProperties() SAL_OVERRIDE;
- virtual writerfilter::Reference<Stream>::Pointer_t getStream() SAL_OVERRIDE;
- virtual writerfilter::Reference<BinaryObj>::Pointer_t getBinary() SAL_OVERRIDE;
- virtual std::string toString() const SAL_OVERRIDE;
- virtual RTFValue* Clone();
- RTFSprms& getAttributes();
- RTFSprms& getSprms();
- RTFShape& getShape() const;
- bool equals(RTFValue& rOther);
- private:
- RTFValue& operator=(RTFValue const& rOther);
- int m_nValue;
- OUString m_sValue;
- boost::shared_ptr<RTFSprms> m_pAttributes;
- boost::shared_ptr<RTFSprms> m_pSprms;
- uno::Reference<drawing::XShape> m_xShape;
- uno::Reference<io::XInputStream> m_xStream;
- uno::Reference<embed::XEmbeddedObject> m_xObject;
- bool m_bForceString;
- boost::shared_ptr<RTFShape> m_pShape;
- };
- } // namespace rtftok
+namespace writerfilter
+{
+namespace rtftok
+{
+class RTFSprms;
+class RTFShape;
+/// Value of an RTF keyword
+class RTFValue
+ : public Value
+{
+public:
+ typedef boost::shared_ptr<RTFValue> Pointer_t;
+ RTFValue(int nValue, const OUString& sValue, RTFSprms rAttributes, RTFSprms rSprms, uno::Reference<drawing::XShape> rShape,
+ uno::Reference<io::XInputStream> rStream, uno::Reference<embed::XEmbeddedObject> rObject, bool bForceString,
+ RTFShape aShape);
+ RTFValue();
+ RTFValue(int nValue);
+ RTFValue(const OUString& sValue, bool bForce = false);
+ RTFValue(RTFSprms rAttributes);
+ RTFValue(RTFSprms rAttributes, RTFSprms rSprms);
+ RTFValue(uno::Reference<drawing::XShape> rShape);
+ RTFValue(uno::Reference<io::XInputStream> rStream);
+ RTFValue(uno::Reference<embed::XEmbeddedObject> rObject);
+ RTFValue(RTFShape aShape);
+ virtual ~RTFValue();
+ void setString(const OUString& sValue);
+ virtual int getInt() const SAL_OVERRIDE;
+ virtual OUString getString() const SAL_OVERRIDE;
+ virtual uno::Any getAny() const SAL_OVERRIDE;
+ virtual writerfilter::Reference<Properties>::Pointer_t getProperties() SAL_OVERRIDE;
+ virtual writerfilter::Reference<Stream>::Pointer_t getStream() SAL_OVERRIDE;
+ virtual writerfilter::Reference<BinaryObj>::Pointer_t getBinary() SAL_OVERRIDE;
+ virtual std::string toString() const SAL_OVERRIDE;
+ virtual RTFValue* Clone();
+ RTFSprms& getAttributes();
+ RTFSprms& getSprms();
+ RTFShape& getShape() const;
+ bool equals(RTFValue& rOther);
+private:
+ RTFValue& operator=(RTFValue const& rOther);
+ int m_nValue;
+ OUString m_sValue;
+ boost::shared_ptr<RTFSprms> m_pAttributes;
+ boost::shared_ptr<RTFSprms> m_pSprms;
+ uno::Reference<drawing::XShape> m_xShape;
+ uno::Reference<io::XInputStream> m_xStream;
+ uno::Reference<embed::XEmbeddedObject> m_xObject;
+ bool m_bForceString;
+ boost::shared_ptr<RTFShape> m_pShape;
+};
+} // namespace rtftok
} // namespace writerfilter
#endif // INCLUDED_WRITERFILTER_SOURCE_RTFTOK_RTFVALUE_HXX