summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Gallwey <mtg@openoffice.org>2001-11-15 19:36:27 +0000
committerMartin Gallwey <mtg@openoffice.org>2001-11-15 19:36:27 +0000
commitf365bd639275954fbf9cec1b30ad3c8bc6927d8d (patch)
treeae1a17e3a16010b73fe60f4399e65fed377dfe97
parent11a5c72daf655896cb5e16068774049910ffaa53 (diff)
#94679# use new static method for obtaining implementation id
-rw-r--r--package/source/zippackage/ZipPackageEntry.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/package/source/zippackage/ZipPackageEntry.cxx b/package/source/zippackage/ZipPackageEntry.cxx
index 4dcd536b2d19..cb9c6f8c0623 100644
--- a/package/source/zippackage/ZipPackageEntry.cxx
+++ b/package/source/zippackage/ZipPackageEntry.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: ZipPackageEntry.cxx,v $
*
- * $Revision: 1.22 $
+ * $Revision: 1.23 $
*
- * last change: $Author: mtg $ $Date: 2001-10-02 22:22:17 $
+ * last change: $Author: mtg $ $Date: 2001-11-15 20:36:27 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -135,7 +135,7 @@ void SAL_CALL ZipPackageEntry::setParent( const Reference< XInterface >& xNewPar
{
sal_Int64 nTest;
Reference < XUnoTunnel > xTunnel ( xNewParent, UNO_QUERY );
- if ( !xNewParent.is() || ( nTest = xTunnel->getSomething ( ZipPackageFolder::getUnoTunnelImplementationId () ) ) == 0 )
+ if ( !xNewParent.is() || ( nTest = xTunnel->getSomething ( ZipPackageFolder::static_getImplementationId () ) ) == 0 )
throw NoSupportException();
ZipPackageFolder *pNewParent = reinterpret_cast < ZipPackageFolder * > ( nTest );