summaryrefslogtreecommitdiff
path: root/cppuhelper
diff options
context:
space:
mode:
authorDaniel Boelzle <dbo@openoffice.org>2001-10-15 12:37:05 +0000
committerDaniel Boelzle <dbo@openoffice.org>2001-10-15 12:37:05 +0000
commit782babebb8993a028e4e2af926c99c24ee88eb91 (patch)
tree039327451460cd7fb26aca72bfa67a32707c9f4b /cppuhelper
parentf417213e9a98d06dcc629abb10e768ccb3732d0d (diff)
#93054# added virtual dtor for internal class avoiding warnings
Diffstat (limited to 'cppuhelper')
-rw-r--r--cppuhelper/source/factory.cxx10
1 files changed, 8 insertions, 2 deletions
diff --git a/cppuhelper/source/factory.cxx b/cppuhelper/source/factory.cxx
index 9b3b900aa97c..39a8cc31c763 100644
--- a/cppuhelper/source/factory.cxx
+++ b/cppuhelper/source/factory.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: factory.cxx,v $
*
- * $Revision: 1.14 $
+ * $Revision: 1.15 $
*
- * last change: $Author: hr $ $Date: 2001-09-26 15:08:52 $
+ * last change: $Author: dbo $ $Date: 2001-10-15 13:37:05 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -146,6 +146,8 @@ public:
, m_fptr( 0 )
{}
+ virtual ~OSingleFactoryHelper();
+
// XInterface
Any SAL_CALL queryInterface( const Type & rType )
throw(::com::sun::star::uno::RuntimeException);
@@ -188,6 +190,10 @@ protected:
Sequence< OUString > aServiceNames;
OUString aImplementationName;
};
+OSingleFactoryHelper::~OSingleFactoryHelper()
+{
+}
+
//-----------------------------------------------------------------------------
Any OSingleFactoryHelper::queryInterface( const Type & rType )