diff options
author | Mathias Bauer <mba@openoffice.org> | 2000-11-20 11:53:58 +0000 |
---|---|---|
committer | Mathias Bauer <mba@openoffice.org> | 2000-11-20 11:53:58 +0000 |
commit | e38e55fdd04345aaf0a85ad41f8a7940d99f30f8 (patch) | |
tree | 6430258c6f56df85b90aee423a4a8b75150140e9 | |
parent | 4bcedfd68bfc3ef7e8159ab67ed27695dc91c4fe (diff) |
#80466#: new ctor to support new JAR storages
-rw-r--r-- | sot/inc/storinfo.hxx | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/sot/inc/storinfo.hxx b/sot/inc/storinfo.hxx index c234fa8deef3..e2c7259e6f6d 100644 --- a/sot/inc/storinfo.hxx +++ b/sot/inc/storinfo.hxx @@ -2,9 +2,9 @@ * * $RCSfile: storinfo.hxx,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: hr $ $Date: 2000-09-18 16:56:51 $ + * last change: $Author: mba $ $Date: 2000-11-20 12:53:58 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -77,9 +77,16 @@ friend class SvStorage; ULONG nSize; BOOL bStream:1, bStorage:1; + SvStorageInfo(){}; // Fuer SvStorage public: SvStorageInfo( const StgDirEntry& ); + SvStorageInfo( const String& rName, ULONG nSz, BOOL bIsStorage ) + : aName( rName ) + , nSize( nSz ) + , bStream( !bIsStorage ) + , bStorage( bIsStorage ) + {} const SvGlobalName & GetClassName() const { return aClassName; } const String & GetName() const { return aName; } |