summaryrefslogtreecommitdiff
path: root/package/source
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-20 05:14:03 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-20 05:14:03 +0000
commitf0bba62e8f697576a4b8d02cf537399f5a2f21f6 (patch)
treeb2b2d78ff876ad24bb7307812885ba5460722bfa /package/source
parentdd26a22cd91748d1b9bc45703dba3943c895e048 (diff)
INTEGRATION: CWS warnings01 (1.6.56); FILE MERGED
2005/11/01 17:10:25 cd 1.6.56.3: #i53898# Warning free code for sun sparc compiler 2005/09/23 03:39:40 sb 1.6.56.2: RESYNC: (1.6-1.7); FILE MERGED 2005/09/15 15:28:03 abi 1.6.56.1: #i53898# warning free
Diffstat (limited to 'package/source')
-rw-r--r--package/source/zippackage/ContentInfo.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/package/source/zippackage/ContentInfo.hxx b/package/source/zippackage/ContentInfo.hxx
index 314c8d6b277b..750b7ca7cfb6 100644
--- a/package/source/zippackage/ContentInfo.hxx
+++ b/package/source/zippackage/ContentInfo.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: ContentInfo.hxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 16:16:29 $
+ * last change: $Author: hr $ $Date: 2006-06-20 06:14:03 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -60,15 +60,15 @@ public:
ZipPackageStream *pStream;
};
ContentInfo ( ZipPackageStream * pNewStream )
- : bFolder ( false )
+ : xTunnel ( pNewStream )
+ , bFolder ( false )
, pStream ( pNewStream )
- , xTunnel ( pNewStream )
{
}
ContentInfo ( ZipPackageFolder * pNewFolder )
- : bFolder ( true )
+ : xTunnel ( pNewFolder )
+ , bFolder ( true )
, pFolder ( pNewFolder )
- , xTunnel ( pNewFolder )
{
}
virtual ~ContentInfo ()
@@ -79,5 +79,5 @@ public:
pStream->clearParent();
}
};
-} } } };
+} } } }
#endif