diff options
author | Noel Grandin <noel@peralex.com> | 2013-08-27 14:50:40 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-08-29 09:30:10 +0200 |
commit | fbf860cd2688f5ff633a1b23923640628f980396 (patch) | |
tree | 1bbeecc1fccc5ce024f8ec06f975740df7bd2a11 /include | |
parent | efad4ffdf3be45494e6a46b5cdb083cdc30ec9be (diff) |
convert include/sfx2/docfile.hxx from String to OUString
Change-Id: I4e9d64feafbebd23afb529960658aa992ab918dd
Diffstat (limited to 'include')
-rw-r--r-- | include/sfx2/docfile.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/sfx2/docfile.hxx b/include/sfx2/docfile.hxx index 7aa06a6b20b6..d9ab7f16fd79 100644 --- a/include/sfx2/docfile.hxx +++ b/include/sfx2/docfile.hxx @@ -74,7 +74,7 @@ public: /** * @param pSet Takes ownership */ - SfxMedium( const String &rName, + SfxMedium( const OUString &rName, StreamMode nOpenMode, const SfxFilter *pFilter = 0, SfxItemSet *pSet = 0 ); @@ -94,14 +94,14 @@ public: * @param pSet does NOT take ownership */ SfxMedium( const css::uno::Reference< css::embed::XStorage >& xStorage, - const String& rBaseURL, + const OUString& rBaseURL, const SfxItemSet* pSet=0 ); /** * @param pSet does NOT take ownership */ SfxMedium( const css::uno::Reference< css::embed::XStorage >& xStorage, - const String& rBaseURL, - const String& rTypeName, + const OUString& rBaseURL, + const OUString& rTypeName, const SfxItemSet* pSet=0 ); SfxMedium( const css::uno::Sequence< css::beans::PropertyValue >& aArgs ); @@ -175,7 +175,7 @@ public: sal_Bool UsesCache() const; void SetUsesCache( sal_Bool ); sal_Bool IsExpired() const; - void SetName( const String& rName, sal_Bool bSetOrigURL = sal_False ); + void SetName( const OUString& rName, sal_Bool bSetOrigURL = sal_False ); sal_Bool IsAllowedForExternalBrowser() const; long GetFileVersion() const; |