diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2003-03-27 16:27:21 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2003-03-27 16:27:21 +0000 |
commit | 817d3d430505b0b289fb1d2e92ba8d1e05bb4f76 (patch) | |
tree | 6e52487d8fa0e71bc6f47b1c991367a9ab2792ee /ucb/source/ucp/package/pkguri.hxx | |
parent | 4ef4fd7f4e783b4059aa5404f170312cd70b81e7 (diff) |
MWS_SRX644: migrate branch mws_srx644 -> HEAD
Diffstat (limited to 'ucb/source/ucp/package/pkguri.hxx')
-rw-r--r-- | ucb/source/ucp/package/pkguri.hxx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/ucb/source/ucp/package/pkguri.hxx b/ucb/source/ucp/package/pkguri.hxx index dcd41bab0d58..077dcd7c9fe3 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.4 $ + * $Revision: 1.5 $ * - * last change: $Author: kso $ $Date: 2001-07-06 08:11:17 $ + * last change: $Author: hr $ $Date: 2003-03-27 17:27:16 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -82,6 +82,7 @@ class PackageUri mutable ::rtl::OUString m_aPackage; mutable ::rtl::OUString m_aPath; mutable ::rtl::OUString m_aName; + mutable ::rtl::OUString m_aParam; mutable bool m_bValid; private: @@ -114,6 +115,9 @@ public: const ::rtl::OUString & getName() const { init(); return m_aName; } + const ::rtl::OUString & getParam() const + { init(); return m_aParam; } + inline sal_Bool isRootFolder() const; }; |