callcatcher: remove Directory ByteString ctor
This commit is contained in:
parent
e5bcbc7fb2
commit
c2b29549ce
2 changed files with 0 additions and 7 deletions
|
@ -47,7 +47,6 @@ class Directory
|
|||
|
||||
Directory( const rtl::OUString sFullPath );
|
||||
Directory( const rtl::OUString sFullPath , const rtl::OUString sEntry ) ;
|
||||
Directory( const ByteString sFullPath );
|
||||
|
||||
static bool lessDir ( const Directory& rKey1, const Directory& rKey2 ) ;
|
||||
};
|
||||
|
|
|
@ -54,12 +54,6 @@ Directory::Directory( const rtl::OUString sFullPath , const rtl::OUString sEntry
|
|||
sDirectoryName = sEntry;
|
||||
}
|
||||
|
||||
|
||||
Directory::Directory( const ByteString sFullPath ) : bSkipLinks( false )
|
||||
{
|
||||
sDirectoryName = rtl::OUString( sFullPath.GetBuffer() , RTL_TEXTENCODING_UTF8 , sFullPath.Len() );
|
||||
}
|
||||
|
||||
bool Directory::lessDir ( const Directory& rKey1, const Directory& rKey2 )
|
||||
{
|
||||
rtl::OUString sName1( ( static_cast< Directory >( rKey1 ) ).getDirectoryName() );
|
||||
|
|
Loading…
Reference in a new issue