blob: 52d9d25420cf77de1a1efc01ba2de82dad61578e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
$NetBSD: patch-comphelper_inc_comphelper_sequenceasvector.hxx,v 1.1 2013/04/01 12:19:13 joerg Exp $
--- comphelper/inc/comphelper/sequenceasvector.hxx.orig 2013-03-30 16:24:50.000000000 +0000
+++ comphelper/inc/comphelper/sequenceasvector.hxx
@@ -135,7 +135,7 @@ class SequenceAsVector : public ::std::v
const TElementType* pSource = lSource.getConstArray();
for (sal_Int32 i=0; i<c; ++i)
- push_back(pSource[i]);
+ this->push_back(pSource[i]);
}
//---------------------------------------
|