diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-09-18 23:13:40 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-09-19 09:59:24 +0100 |
commit | 8c4d2ee8cb2b1950be02aed6cf5d4a4d1c5d6e32 (patch) | |
tree | dd38e602af58cb0dfc21088beab8a9d372c9105b /tools | |
parent | 8004d2d6f516e4dfb1b0b37e257c90249b77f08d (diff) |
ByteString->rtl::OString[Buffer]
Diffstat (limited to 'tools')
-rw-r--r-- | tools/source/fsys/dirent.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/source/fsys/dirent.cxx b/tools/source/fsys/dirent.cxx index 6666aa333ac5..15611506fda9 100644 --- a/tools/source/fsys/dirent.cxx +++ b/tools/source/fsys/dirent.cxx @@ -345,9 +345,9 @@ ByteString ImplCutPath( const ByteString& rStr, sal_uInt16 nMax, char cAccDel ) if ( bInsertPrefix ) { - ByteString aIns( cAccDel ); - aIns += "..."; - aCutPath.Insert( aIns, nBegin ); + rtl::OStringBuffer aIns; + aIns.append(cAccDel).append(RTL_CONSTASCII_STRINGPARAM("...")); + aCutPath.Insert(ByteString(aIns.makeStringAndClear()), nBegin); } return aCutPath; @@ -1373,13 +1373,13 @@ void DirEntry::SetName( const String& rName, FSysPathStyle eFormatter ) { DBG_CHKTHIS( DirEntry, ImpCheckDirEntry ); - if ( eFormatter == FSYS_STYLE_HOST || eFormatter == FSYS_STYLE_DETECT ) + if ( eFormatter == FSYS_STYLE_HOST || eFormatter == FSYS_STYLE_DETECT ) eFormatter = DEFSTYLE; - ByteString aAccDelim( ACCESSDELIM_C( eFormatter ) ); + sal_Char cAccDelim(ACCESSDELIM_C(eFormatter)); if ( (eFlag != FSYS_FLAG_NORMAL) || (aName.Search( ':' ) != STRING_NOTFOUND) || - (aName.Search( aAccDelim ) != STRING_NOTFOUND) ) + (aName.Search( cAccDelim ) != STRING_NOTFOUND) ) { eFlag = FSYS_FLAG_INVALID; } |