diff options
author | Kai Sommerfeld <kso@openoffice.org> | 2001-01-24 11:42:16 +0000 |
---|---|---|
committer | Kai Sommerfeld <kso@openoffice.org> | 2001-01-24 11:42:16 +0000 |
commit | 5b071f1495d8964ac6db4203aaa9833f76fa7935 (patch) | |
tree | 0206694985812ab83850ca8ab80a03f75c6b36b0 /ucb/source/ucp/package/pkgcontent.cxx | |
parent | 9d994dbbc6cbfbc1ce72f896c2164478f11833fd (diff) |
#65593# - Added missing SUPD ifdefs.
Diffstat (limited to 'ucb/source/ucp/package/pkgcontent.cxx')
-rw-r--r-- | ucb/source/ucp/package/pkgcontent.cxx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/ucb/source/ucp/package/pkgcontent.cxx b/ucb/source/ucp/package/pkgcontent.cxx index a84bb19e451e..9afa6f874f8c 100644 --- a/ucb/source/ucp/package/pkgcontent.cxx +++ b/ucb/source/ucp/package/pkgcontent.cxx @@ -2,9 +2,9 @@ * * $RCSfile: pkgcontent.cxx,v $ * - * $Revision: 1.16 $ + * $Revision: 1.17 $ * - * last change: $Author: kso $ $Date: 2001-01-22 11:28:27 $ + * last change: $Author: kso $ $Date: 2001-01-24 12:42:16 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -288,7 +288,9 @@ Content::Content( const Reference< XMultiServiceFactory >& rxSMgr, m_aProps.bIsFolder = sal_True; m_aProps.bIsDocument = sal_False; m_aProps.nSize = 0; +#if SUPD>616 m_aProps.bCompressed = sal_False; +#endif } else { @@ -303,7 +305,9 @@ Content::Content( const Reference< XMultiServiceFactory >& rxSMgr, m_aProps.bIsFolder = sal_False; m_aProps.bIsDocument = sal_True; m_aProps.nSize = 0; +#if SUPD>616 m_aProps.bCompressed = sal_False; +#endif } } |