diff options
author | Noel Grandin <noel@peralex.com> | 2013-08-20 13:15:16 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-08-22 10:49:29 +0200 |
commit | 34792b8e1763ee9973b3f0671388f84bf869c975 (patch) | |
tree | 76fd62061f472f139bc1d5ccd576eaadbc32171d /svtools | |
parent | edffe40425ea44437844e73f238332ef281e8939 (diff) |
convert svtools/source/contnr/contentenumation.hxx from String to OUString
Change-Id: I1cdf67cd31ae65543bd27ce5cfc195daf12d0fc2
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/contnr/contentenumeration.cxx | 2 | ||||
-rw-r--r-- | svtools/source/contnr/contentenumeration.hxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/svtools/source/contnr/contentenumeration.cxx b/svtools/source/contnr/contentenumeration.cxx index 39e337381775..081a7a603598 100644 --- a/svtools/source/contnr/contentenumeration.cxx +++ b/svtools/source/contnr/contentenumeration.cxx @@ -132,7 +132,7 @@ namespace svt m_aFolder = _rFolder; m_pResultHandler = _pResultHandler; - OSL_ENSURE( m_aFolder.aContent.get().is() || m_aFolder.sURL.Len(), + OSL_ENSURE( m_aFolder.aContent.get().is() || !m_aFolder.sURL.isEmpty(), "FileViewContentEnumerator::enumerateFolderContent: invalid folder descriptor!" ); launch(); diff --git a/svtools/source/contnr/contentenumeration.hxx b/svtools/source/contnr/contentenumeration.hxx index 95da38a71bfe..4849e4247112 100644 --- a/svtools/source/contnr/contentenumeration.hxx +++ b/svtools/source/contnr/contentenumeration.hxx @@ -148,7 +148,7 @@ namespace svt ::ucbhelper::Content aContent; /** the URL of a folder. Will be ignored if <member>aContent</member> is not <NULL/>. */ - String sURL; + OUString sURL; FolderDescriptor() { } @@ -157,7 +157,7 @@ namespace svt { } - FolderDescriptor( const String& _rURL ) + FolderDescriptor( const OUString& _rURL ) :sURL( _rURL ) { } |