diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2012-03-13 08:35:51 +0100 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2012-03-13 08:35:51 +0100 |
commit | d2850c03d87f38f54a1609d917de05a89856bee5 (patch) | |
tree | 4db8c529c41deffa1a00e30c89a1bb7f3f9d5bf9 /connectivity | |
parent | bde32dc95d33943e301bd165955655eb02e1e223 (diff) |
actually use the base class, not the class itself
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/inc/ado/Aolewrap.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/connectivity/source/inc/ado/Aolewrap.hxx b/connectivity/source/inc/ado/Aolewrap.hxx index ad4897e2b37a..810603d8e1a0 100644 --- a/connectivity/source/inc/ado/Aolewrap.hxx +++ b/connectivity/source/inc/ado/Aolewrap.hxx @@ -221,7 +221,7 @@ namespace connectivity // They only call the superclass using WpOLEBase<Ts>::pInterface; WpOLEAppendCollection(Ts* pInt=NULL):WpOLECollection<Ts,T,WrapT>(pInt){} - WpOLEAppendCollection(const WpOLEAppendCollection& rhs) : WpOLEAppendCollection<Ts, T, WrapT>(rhs) {} + WpOLEAppendCollection(const WpOLEAppendCollection& rhs) : WpOLECollection<Ts, T, WrapT>(rhs) {} inline WpOLEAppendCollection& operator=(const WpOLEAppendCollection& rhs) {WpOLEBase<Ts>::operator=(rhs); return *this;}; ////////////////////////////////////////////////////////////////////// |