summaryrefslogtreecommitdiff
path: root/basic/source/runtime/methods1.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'basic/source/runtime/methods1.cxx')
-rw-r--r--basic/source/runtime/methods1.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/basic/source/runtime/methods1.cxx b/basic/source/runtime/methods1.cxx
index 7f7529a1a6de..0f25139269b0 100644
--- a/basic/source/runtime/methods1.cxx
+++ b/basic/source/runtime/methods1.cxx
@@ -1425,7 +1425,7 @@ RTLFUNC(GetPathSeparator)
StarBASIC::Error( SbERR_BAD_ARGUMENT );
return;
}
- rPar.Get(0)->PutString( DirEntry::GetAccessDelimiter() );
+ rPar.Get(0)->PutString( OUString( SAL_PATHDELIMITER ) );
}
RTLFUNC(ResolvePath)
@@ -1436,7 +1436,6 @@ RTLFUNC(ResolvePath)
if ( rPar.Count() == 2 )
{
OUString aStr = rPar.Get(1)->GetOUString();
- DirEntry aEntry( aStr );
rPar.Get(0)->PutString( aStr );
}
else