summaryrefslogtreecommitdiff
path: root/package/source/zippackage/ContentInfo.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'package/source/zippackage/ContentInfo.hxx')
-rw-r--r--package/source/zippackage/ContentInfo.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/package/source/zippackage/ContentInfo.hxx b/package/source/zippackage/ContentInfo.hxx
index baf5078147a2..65a8a0c7a240 100644
--- a/package/source/zippackage/ContentInfo.hxx
+++ b/package/source/zippackage/ContentInfo.hxx
@@ -2,7 +2,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -44,19 +44,19 @@ public:
ZipPackageFolder *pFolder;
ZipPackageStream *pStream;
};
- ContentInfo ( ZipPackageStream * pNewStream )
+ ContentInfo ( ZipPackageStream * pNewStream )
: xTunnel ( pNewStream )
, bFolder ( false )
, pStream ( pNewStream )
{
}
- ContentInfo ( ZipPackageFolder * pNewFolder )
+ ContentInfo ( ZipPackageFolder * pNewFolder )
: xTunnel ( pNewFolder )
, bFolder ( true )
, pFolder ( pNewFolder )
{
}
- virtual ~ContentInfo ()
+ virtual ~ContentInfo ()
{
if ( bFolder )
pFolder->releaseUpwardRef();