diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2012-11-03 14:19:25 +0100 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2012-11-03 14:19:25 +0100 |
commit | ad410afdfa5609e0bf4ea643d9b027064371588d (patch) | |
tree | 5ecc8cdd4bae95269680e7bdfb17ab7a51b5585f /connectivity/source/inc/ado | |
parent | 363cf6579930565094b908e7c9390bea29f290e8 (diff) |
fix strange copy ctor that triggers a missing base initialization warning
Diffstat (limited to 'connectivity/source/inc/ado')
-rw-r--r-- | connectivity/source/inc/ado/Aolewrap.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/connectivity/source/inc/ado/Aolewrap.hxx b/connectivity/source/inc/ado/Aolewrap.hxx index 4e1debe4266c..c4462a1eb11a 100644 --- a/connectivity/source/inc/ado/Aolewrap.hxx +++ b/connectivity/source/inc/ado/Aolewrap.hxx @@ -94,8 +94,9 @@ namespace connectivity } WpOLEBase(const WpOLEBase<T>& aWrapper) + : WpBase( aWrapper ) + , pInterface( aWrapper.pInterface ) { - operator=(aWrapper); } virtual ~WpOLEBase() |