diff options
author | Martin Blapp <mbr@FreeBSD.org> | 2002-10-21 09:02:08 +0000 |
---|---|---|
committer | Martin Blapp <mbr@FreeBSD.org> | 2002-10-21 09:02:08 +0000 |
commit | 403bb5464a5b30c3853b1554265d0c8741c72690 (patch) | |
tree | c828046c732cde09938fa2839d8f8c5d8855f415 /editors/openoffice.org-vcltesttool/files/patch-package::source::zippackage::ZipPackageFolder.cxx | |
parent | All patches have been repocopied to use + as separator and not "::". (diff) |
All patches will be a repocopy from ports/openoffice/files. Remove old
patches with "::" delimiters.
Notes
Notes:
svn path=/head/; revision=68481
Diffstat (limited to 'editors/openoffice.org-vcltesttool/files/patch-package::source::zippackage::ZipPackageFolder.cxx')
-rw-r--r-- | editors/openoffice.org-vcltesttool/files/patch-package::source::zippackage::ZipPackageFolder.cxx | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/editors/openoffice.org-vcltesttool/files/patch-package::source::zippackage::ZipPackageFolder.cxx b/editors/openoffice.org-vcltesttool/files/patch-package::source::zippackage::ZipPackageFolder.cxx deleted file mode 100644 index bb504c834eef..000000000000 --- a/editors/openoffice.org-vcltesttool/files/patch-package::source::zippackage::ZipPackageFolder.cxx +++ /dev/null @@ -1,41 +0,0 @@ ---- ../package/source/zippackage/ZipPackageFolder.cxx.orig Wed Jun 12 23:09:16 2002 -+++ ../package/source/zippackage/ZipPackageFolder.cxx Wed Jun 12 23:10:42 2002 -@@ -212,7 +212,7 @@ - return maContents.size() > 0; - } - // XNameAccess --ContentInfo& ZipPackageFolder::doGetByName( const OUString& aName ) -+ZipContentInfo& ZipPackageFolder::doGetByName( const OUString& aName ) - throw(NoSuchElementException, WrappedTargetException, RuntimeException) - { - ContentHash::iterator aIter = maContents.find ( aName ); -@@ -286,7 +286,7 @@ - aCI++) - { - const OUString &rShortName = (*aCI).first; -- const ContentInfo &rInfo = *(*aCI).second; -+ const ZipContentInfo &rInfo = *(*aCI).second; - - Sequence < PropertyValue > aPropSet (2); - PropertyValue *pValue = aPropSet.getArray(); -@@ -533,7 +533,7 @@ - aCI!=maContents.end(); - aCI++) - { -- ContentInfo &rInfo = * (*aCI).second; -+ ZipContentInfo &rInfo = * (*aCI).second; - if ( rInfo.bFolder )// && ! rInfo.pFolder->HasReleased () ) - rInfo.pFolder->releaseUpwardRef(); - else //if ( !rInfo.bFolder && !rInfo.pStream->HasReleased() ) -@@ -577,9 +577,9 @@ - throw(IllegalArgumentException, ElementExistException, WrappedTargetException, RuntimeException) - { - if ( pEntry->IsFolder() ) -- maContents[pEntry->aEntry.sName] = new ContentInfo ( static_cast < ZipPackageFolder *> ( pEntry ) ); -+ maContents[pEntry->aEntry.sName] = new ZipContentInfo ( static_cast < ZipPackageFolder *> ( pEntry ) ); - else -- maContents[pEntry->aEntry.sName] = new ContentInfo ( static_cast < ZipPackageStream *> ( pEntry ) ); -+ maContents[pEntry->aEntry.sName] = new ZipContentInfo ( static_cast < ZipPackageStream *> ( pEntry ) ); - - if ( bSetParent ) - pEntry->setParent ( *this ); |