summaryrefslogtreecommitdiff
path: root/writerfilter/source/rtftok/rtfvalue.hxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@frugalware.org>2011-07-02 13:54:42 +0200
committerMiklos Vajna <vmiklos@frugalware.org>2011-07-02 13:54:42 +0200
commitd2f3e45d5cb9cf5220df99e782d0ad05e567f947 (patch)
tree01c6965117d0d520545a7274d0aafd9643f5e9b5 /writerfilter/source/rtftok/rtfvalue.hxx
parentb7ebd7bbd35786a75bcae6c301151ea42021cf5f (diff)
rtftok: '>>' should be '> >' within a nested template argument list
Diffstat (limited to 'writerfilter/source/rtftok/rtfvalue.hxx')
-rw-r--r--writerfilter/source/rtftok/rtfvalue.hxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/writerfilter/source/rtftok/rtfvalue.hxx b/writerfilter/source/rtftok/rtfvalue.hxx
index 700de7147e74..e03971936ac9 100644
--- a/writerfilter/source/rtftok/rtfvalue.hxx
+++ b/writerfilter/source/rtftok/rtfvalue.hxx
@@ -41,13 +41,13 @@ namespace writerfilter {
{
public:
typedef ::boost::shared_ptr<RTFValue> Pointer_t;
- RTFValue(int nValue, rtl::OUString sValue, std::vector<std::pair<Id, RTFValue::Pointer_t>> rAttributes,
- std::vector<std::pair<Id, RTFValue::Pointer_t>> rSprms, uno::Reference<drawing::XShape> rShape);
+ RTFValue(int nValue, rtl::OUString sValue, std::vector< std::pair<Id, RTFValue::Pointer_t> > rAttributes,
+ std::vector< std::pair<Id, RTFValue::Pointer_t> > rSprms, uno::Reference<drawing::XShape> rShape);
RTFValue(int nValue);
RTFValue(rtl::OUString sValue, bool bForce = false);
- RTFValue(std::vector<std::pair<Id, RTFValue::Pointer_t>> rAttributes);
- RTFValue(std::vector<std::pair<Id, RTFValue::Pointer_t>> rAttributes,
- std::vector<std::pair<Id, RTFValue::Pointer_t>> rSprms);
+ RTFValue(std::vector< std::pair<Id, RTFValue::Pointer_t> > rAttributes);
+ RTFValue(std::vector< std::pair<Id, RTFValue::Pointer_t> > rAttributes,
+ std::vector< std::pair<Id, RTFValue::Pointer_t> > rSprms);
RTFValue(uno::Reference<drawing::XShape> rShape);
void setString(rtl::OUString sValue);
virtual int getInt() const;
@@ -58,13 +58,13 @@ namespace writerfilter {
virtual writerfilter::Reference<BinaryObj>::Pointer_t getBinary();
virtual std::string toString() const;
virtual RTFValue* Clone();
- std::vector<std::pair<Id, RTFValue::Pointer_t>>& getAttributes();
- std::vector<std::pair<Id, RTFValue::Pointer_t>>& getSprms();
+ std::vector< std::pair<Id, RTFValue::Pointer_t> >& getAttributes();
+ std::vector< std::pair<Id, RTFValue::Pointer_t> >& getSprms();
private:
int m_nValue;
rtl::OUString m_sValue;
- std::vector<std::pair<Id, RTFValue::Pointer_t>> m_rAttributes;
- std::vector<std::pair<Id, RTFValue::Pointer_t>> m_rSprms;
+ std::vector< std::pair<Id, RTFValue::Pointer_t> > m_rAttributes;
+ std::vector< std::pair<Id, RTFValue::Pointer_t> > m_rSprms;
uno::Reference<drawing::XShape> m_rShape;
bool m_bForceString;
};