summaryrefslogtreecommitdiff
path: root/embedserv/source/inc/servprov.hxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-20 04:42:56 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-20 04:42:56 +0000
commite60ff0474127fa90233b339d716391356a3028f7 (patch)
treef588b1187475bae25b137a74fd6877af1ba75467 /embedserv/source/inc/servprov.hxx
parenta3a8f54bf57450994feb863197085ea838156aec (diff)
INTEGRATION: CWS warnings01 (1.3.16); FILE MERGED
2006/02/20 15:31:50 cd 1.3.16.1: #i55991# Warning free code for Windows C++ compiler
Diffstat (limited to 'embedserv/source/inc/servprov.hxx')
-rwxr-xr-xembedserv/source/inc/servprov.hxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/embedserv/source/inc/servprov.hxx b/embedserv/source/inc/servprov.hxx
index 65d6aec82f18..c05b5eb45e96 100755
--- a/embedserv/source/inc/servprov.hxx
+++ b/embedserv/source/inc/servprov.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: servprov.hxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 18:56:44 $
+ * last change: $Author: hr $ $Date: 2006-06-20 05:42:56 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -35,6 +35,7 @@
#ifndef _SERVPROV_HXX
#define _SERVPROV_HXX
+
#if defined(_MSC_VER) && (_MSC_VER >= 1300)
#undef _DEBUG
#endif
@@ -66,8 +67,8 @@ class EmbedProviderFactory_Impl;
class EmbedServer_Impl : public ::cppu::OWeakObject, ::com::sun::star::lang::XTypeProvider
{
public:
- EmbedServer_Impl( const ::com::sun::star::uno::Reference<::com::sun::star::lang::XMultiServiceFactory> &xFactory );
- ~EmbedServer_Impl();
+ EmbedServer_Impl( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > &xFactory );
+ virtual ~EmbedServer_Impl();
// XInterface
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type& aType )
@@ -84,15 +85,15 @@ public:
protected:
CComPtr< EmbedProviderFactory_Impl > m_pOLEFactories[ SUPPORTED_FACTORIES_NUM ];
- ::com::sun::star::uno::Reference<::com::sun::star::lang::XMultiServiceFactory> m_xFactory;
+ ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > m_xFactory;
};
class EmbedProviderFactory_Impl : public IClassFactory
{
public:
- EmbedProviderFactory_Impl( const ::com::sun::star::uno::Reference<::com::sun::star::lang::XMultiServiceFactory>& xFactory, const GUID* pGuid);
- ~EmbedProviderFactory_Impl();
+ EmbedProviderFactory_Impl( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& xFactory, const GUID* pGuid);
+ virtual ~EmbedProviderFactory_Impl();
sal_Bool registerClass();
sal_Bool deregisterClass();
@@ -112,8 +113,7 @@ protected:
GUID m_guid;
DWORD m_factoryHandle;
- ::com::sun::star::uno::Reference<::com::sun::star::lang::XMultiServiceFactory> m_xFactory;
+ ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > m_xFactory;
};
#endif
-