diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 11:13:01 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 11:13:01 +0000 |
commit | c0b23d9d515d5fe650b4bc5eda2246184ae7fe30 (patch) | |
tree | a6040bc90693a40e9ecd8311c7a05d89f64de4f4 /ucbhelper | |
parent | 3c2592f70af7935b1343fe86a0e6ed13a88b7e6e (diff) |
INTEGRATION: CWS warnings01 (1.6.168); FILE MERGED
2005/09/22 19:02:30 sb 1.6.168.2: RESYNC: (1.6-1.7); FILE MERGED
2005/09/01 12:15:32 sb 1.6.168.1: #i53898# Made code warning-free.
Diffstat (limited to 'ucbhelper')
-rw-r--r-- | ucbhelper/source/provider/providerhelper.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ucbhelper/source/provider/providerhelper.cxx b/ucbhelper/source/provider/providerhelper.cxx index 2af38c6956a5..afc71da4a881 100644 --- a/ucbhelper/source/provider/providerhelper.cxx +++ b/ucbhelper/source/provider/providerhelper.cxx @@ -4,9 +4,9 @@ * * $RCSfile: providerhelper.cxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: rt $ $Date: 2005-09-09 16:39:50 $ + * last change: $Author: hr $ $Date: 2006-06-19 12:13:01 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -138,8 +138,8 @@ using namespace ucb_impl; ContentProviderImplHelper::ContentProviderImplHelper( const Reference< XMultiServiceFactory >& rXSMgr ) -: m_xSMgr( rXSMgr ), - m_pImpl( new ucb_impl::ContentProviderImplHelper_Impl ) +: m_pImpl( new ucb_impl::ContentProviderImplHelper_Impl ), + m_xSMgr( rXSMgr ) { } |