summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@frugalware.org>2012-02-07 17:50:01 +0100
committerMiklos Vajna <vmiklos@frugalware.org>2012-02-07 17:50:35 +0100
commit0e79718a1002d673cf8ef508e5963900ce84be1d (patch)
treee49de8ca07687b9e2ef75f84b9d6417d0dc60913
parent8e6e880949b3f603c3d26ab5467cb417b92ae2be (diff)
rtftok: use m_r prefix for C++ reference members only
-rw-r--r--writerfilter/source/rtftok/rtfreferenceproperties.cxx16
-rw-r--r--writerfilter/source/rtftok/rtfreferenceproperties.hxx4
-rw-r--r--writerfilter/source/rtftok/rtfvalue.cxx42
-rw-r--r--writerfilter/source/rtftok/rtfvalue.hxx4
4 files changed, 33 insertions, 33 deletions
diff --git a/writerfilter/source/rtftok/rtfreferenceproperties.cxx b/writerfilter/source/rtftok/rtfreferenceproperties.cxx
index dac64ad5be99..a28a96cbe7c9 100644
--- a/writerfilter/source/rtftok/rtfreferenceproperties.cxx
+++ b/writerfilter/source/rtftok/rtfreferenceproperties.cxx
@@ -30,15 +30,15 @@
namespace writerfilter {
namespace rtftok {
-RTFReferenceProperties::RTFReferenceProperties(RTFSprms rAttributes, RTFSprms rSprms)
- : m_rAttributes(rAttributes),
- m_rSprms(rSprms)
+RTFReferenceProperties::RTFReferenceProperties(RTFSprms aAttributes, RTFSprms aSprms)
+ : m_aAttributes(aAttributes),
+ m_aSprms(aSprms)
{
}
-RTFReferenceProperties::RTFReferenceProperties(RTFSprms rAttributes)
- : m_rAttributes(rAttributes),
- m_rSprms()
+RTFReferenceProperties::RTFReferenceProperties(RTFSprms aAttributes)
+ : m_aAttributes(aAttributes),
+ m_aSprms()
{
}
@@ -48,9 +48,9 @@ RTFReferenceProperties::~RTFReferenceProperties()
void RTFReferenceProperties::resolve(Properties& rHandler)
{
- for (RTFSprms::Iterator_t i = m_rAttributes->begin(); i != m_rAttributes->end(); ++i)
+ for (RTFSprms::Iterator_t i = m_aAttributes->begin(); i != m_aAttributes->end(); ++i)
rHandler.attribute(i->first, *i->second.get());
- for (RTFSprms::Iterator_t i = m_rSprms->begin(); i != m_rSprms->end(); ++i)
+ for (RTFSprms::Iterator_t i = m_aSprms->begin(); i != m_aSprms->end(); ++i)
{
RTFSprm aSprm(i->first, i->second);
rHandler.sprm(aSprm);
diff --git a/writerfilter/source/rtftok/rtfreferenceproperties.hxx b/writerfilter/source/rtftok/rtfreferenceproperties.hxx
index 4851398e826a..ed8676519e47 100644
--- a/writerfilter/source/rtftok/rtfreferenceproperties.hxx
+++ b/writerfilter/source/rtftok/rtfreferenceproperties.hxx
@@ -45,8 +45,8 @@ namespace writerfilter {
virtual void resolve(Properties & rHandler);
virtual std::string getType() const;
private:
- RTFSprms m_rAttributes;
- RTFSprms m_rSprms;
+ RTFSprms m_aAttributes;
+ RTFSprms m_aSprms;
};
} // namespace rtftok
} // namespace writerfilter
diff --git a/writerfilter/source/rtftok/rtfvalue.cxx b/writerfilter/source/rtftok/rtfvalue.cxx
index 661781ea2243..530bb1c71d92 100644
--- a/writerfilter/source/rtftok/rtfvalue.cxx
+++ b/writerfilter/source/rtftok/rtfvalue.cxx
@@ -34,12 +34,12 @@ using rtl::OString;
using rtl::OUString;
RTFValue::RTFValue(int nValue, rtl::OUString sValue, RTFSprms rAttributes,
- RTFSprms rSprms, uno::Reference<drawing::XShape> rShape,
- uno::Reference<io::XInputStream> rStream)
+ RTFSprms rSprms, uno::Reference<drawing::XShape> xShape,
+ uno::Reference<io::XInputStream> xStream)
: m_nValue(nValue),
m_sValue(sValue),
- m_rShape(rShape),
- m_rStream(rStream),
+ m_xShape(xShape),
+ m_xStream(xStream),
m_bForceString(false)
{
m_pAttributes.reset(new RTFSprms(rAttributes));
@@ -49,8 +49,8 @@ RTFValue::RTFValue(int nValue, rtl::OUString sValue, RTFSprms rAttributes,
RTFValue::RTFValue(int nValue)
: m_nValue(nValue),
m_sValue(),
- m_rShape(),
- m_rStream(),
+ m_xShape(),
+ m_xStream(),
m_bForceString(false)
{
m_pAttributes.reset(new RTFSprms());
@@ -60,8 +60,8 @@ RTFValue::RTFValue(int nValue)
RTFValue::RTFValue(OUString sValue, bool bForce)
: m_nValue(),
m_sValue(sValue),
- m_rShape(),
- m_rStream(),
+ m_xShape(),
+ m_xStream(),
m_bForceString(bForce)
{
m_pAttributes.reset(new RTFSprms());
@@ -71,8 +71,8 @@ RTFValue::RTFValue(OUString sValue, bool bForce)
RTFValue::RTFValue(RTFSprms rAttributes)
: m_nValue(),
m_sValue(),
- m_rShape(),
- m_rStream(),
+ m_xShape(),
+ m_xStream(),
m_bForceString(false)
{
m_pAttributes.reset(new RTFSprms(rAttributes));
@@ -82,8 +82,8 @@ RTFValue::RTFValue(RTFSprms rAttributes)
RTFValue::RTFValue(RTFSprms rAttributes, RTFSprms rSprms)
: m_nValue(),
m_sValue(),
- m_rShape(),
- m_rStream(),
+ m_xShape(),
+ m_xStream(),
m_bForceString(false)
{
m_pAttributes.reset(new RTFSprms(rAttributes));
@@ -93,8 +93,8 @@ RTFValue::RTFValue(RTFSprms rAttributes, RTFSprms rSprms)
RTFValue::RTFValue(uno::Reference<drawing::XShape> rShape)
: m_nValue(),
m_sValue(),
- m_rShape(rShape),
- m_rStream(),
+ m_xShape(rShape),
+ m_xStream(),
m_bForceString(false)
{
m_pAttributes.reset(new RTFSprms());
@@ -104,8 +104,8 @@ RTFValue::RTFValue(uno::Reference<drawing::XShape> rShape)
RTFValue::RTFValue(uno::Reference<io::XInputStream> rStream)
: m_nValue(),
m_sValue(),
- m_rShape(),
- m_rStream(rStream),
+ m_xShape(),
+ m_xStream(rStream),
m_bForceString(false)
{
m_pAttributes.reset(new RTFSprms());
@@ -139,10 +139,10 @@ uno::Any RTFValue::getAny() const
uno::Any ret;
if (!m_sValue.isEmpty() || m_bForceString)
ret <<= m_sValue;
- else if (m_rShape.is())
- ret <<= m_rShape;
- else if (m_rStream.is())
- ret <<= m_rStream;
+ else if (m_xShape.is())
+ ret <<= m_xShape;
+ else if (m_xStream.is())
+ ret <<= m_xStream;
else
ret <<= static_cast<sal_Int32>(m_nValue);
return ret;
@@ -176,7 +176,7 @@ std::string RTFValue::toString() const
RTFValue* RTFValue::Clone()
{
- return new RTFValue(m_nValue, m_sValue, *m_pAttributes, *m_pSprms, m_rShape, m_rStream);
+ return new RTFValue(m_nValue, m_sValue, *m_pAttributes, *m_pSprms, m_xShape, m_xStream);
}
RTFSprms& RTFValue::getAttributes()
diff --git a/writerfilter/source/rtftok/rtfvalue.hxx b/writerfilter/source/rtftok/rtfvalue.hxx
index 791842874da7..c2ad524f0fae 100644
--- a/writerfilter/source/rtftok/rtfvalue.hxx
+++ b/writerfilter/source/rtftok/rtfvalue.hxx
@@ -65,8 +65,8 @@ namespace writerfilter {
rtl::OUString m_sValue;
boost::shared_ptr<RTFSprms> m_pAttributes;
boost::shared_ptr<RTFSprms> m_pSprms;
- uno::Reference<drawing::XShape> m_rShape;
- uno::Reference<io::XInputStream> m_rStream;
+ uno::Reference<drawing::XShape> m_xShape;
+ uno::Reference<io::XInputStream> m_xStream;
bool m_bForceString;
};
} // namespace rtftok