summaryrefslogtreecommitdiff
path: root/comphelper
diff options
context:
space:
mode:
authorAriel Constenla-Haile <arielch@apache.org>2012-06-10 13:05:15 +0000
committerAriel Constenla-Haile <arielch@apache.org>2012-06-10 13:05:15 +0000
commitd3dbbeeeaaa7006e7f1bda592650957987145e6d (patch)
tree550bea8d3b54048416b03d9dd73403b7b7e194e6 /comphelper
parentb85452001a10ac830828739f61a95b74143260d0 (diff)
GCC 4.7 build breakers
Notes
Diffstat (limited to 'comphelper')
-rw-r--r--comphelper/inc/comphelper/InlineContainer.hxx2
-rw-r--r--comphelper/inc/comphelper/sequenceasvector.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/comphelper/inc/comphelper/InlineContainer.hxx b/comphelper/inc/comphelper/InlineContainer.hxx
index ec778956240e..ca8b7ed87265 100644
--- a/comphelper/inc/comphelper/InlineContainer.hxx
+++ b/comphelper/inc/comphelper/InlineContainer.hxx
@@ -95,7 +95,7 @@ public:
explicit MakeSet(const T &a)
: ::std::set< T >()
{
- insert(this->end(), a);
+ this->insert(this->end(), a);
}
MakeSet &operator()(const T &a)
{
diff --git a/comphelper/inc/comphelper/sequenceasvector.hxx b/comphelper/inc/comphelper/sequenceasvector.hxx
index 2bf8af20a1e4..f72ded99332d 100644
--- a/comphelper/inc/comphelper/sequenceasvector.hxx
+++ b/comphelper/inc/comphelper/sequenceasvector.hxx
@@ -139,7 +139,7 @@ class SequenceAsVector : public ::std::vector< TElementType >
const TElementType* pSource = lSource.getConstArray();
for (sal_Int32 i=0; i<c; ++i)
- push_back(pSource[i]);
+ this->push_back(pSource[i]);
}
//---------------------------------------