diff options
author | Oliver Bolte <obo@openoffice.org> | 2004-08-12 11:15:47 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2004-08-12 11:15:47 +0000 |
commit | 7af085fbe92cebb62e8a4fdc9d182e5ba6b916d9 (patch) | |
tree | 7a1e5716f5f23cdae24590dff4624ae56ae28420 /ucb/source | |
parent | a8433a8a1850c00f0d41d932799505a48aafdc36 (diff) |
INTEGRATION: CWS unotlc (1.6.34); FILE MERGED
2004/08/04 12:21:42 mav 1.6.34.1: #i32418# vnd.sun.star.zip scheme
Diffstat (limited to 'ucb/source')
-rw-r--r-- | ucb/source/ucp/package/pkguri.hxx | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/ucb/source/ucp/package/pkguri.hxx b/ucb/source/ucp/package/pkguri.hxx index 13cdacb8ddb5..72773c18a0b5 100644 --- a/ucb/source/ucp/package/pkguri.hxx +++ b/ucb/source/ucp/package/pkguri.hxx @@ -2,9 +2,9 @@ * * $RCSfile: pkguri.hxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: hr $ $Date: 2004-04-14 13:40:14 $ + * last change: $Author: obo $ $Date: 2004-08-12 12:15:47 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -71,6 +71,7 @@ namespace package_ucp { //========================================================================= #define PACKAGE_URL_SCHEME "vnd.sun.star.pkg" +#define PACKAGE_ZIP_URL_SCHEME "vnd.sun.star.zip" #define PACKAGE_URL_SCHEME_LENGTH 16 //========================================================================= @@ -83,6 +84,7 @@ class PackageUri mutable ::rtl::OUString m_aPath; mutable ::rtl::OUString m_aName; mutable ::rtl::OUString m_aParam; + mutable ::rtl::OUString m_aScheme; mutable bool m_bValid; private: @@ -121,6 +123,9 @@ public: const ::rtl::OUString & getParam() const { init(); return m_aParam; } + const ::rtl::OUString & getScheme() const + { init(); return m_aScheme; } + inline sal_Bool isRootFolder() const; }; |