summaryrefslogtreecommitdiffstats
path: root/basic
diff options
context:
space:
mode:
Diffstat (limited to 'basic')
-rw-r--r--basic/source/runtime/methods1.cxx3
-rw-r--r--basic/source/runtime/runtime.cxx1
-rw-r--r--basic/source/runtime/step0.cxx1
3 files changed, 1 insertions, 4 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
diff --git a/basic/source/runtime/runtime.cxx b/basic/source/runtime/runtime.cxx
index 52b3b2343033..815030d76e87 100644
--- a/basic/source/runtime/runtime.cxx
+++ b/basic/source/runtime/runtime.cxx
@@ -17,7 +17,6 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include <tools/fsys.hxx>
#include <vcl/svapp.hxx>
#include <tools/wldcrd.hxx>
#include <svl/zforlist.hxx>
diff --git a/basic/source/runtime/step0.cxx b/basic/source/runtime/step0.cxx
index 225b17bf2d55..413548308c81 100644
--- a/basic/source/runtime/step0.cxx
+++ b/basic/source/runtime/step0.cxx
@@ -19,7 +19,6 @@
#include <comphelper/string.hxx>
#include <vcl/msgbox.hxx>
-#include <tools/fsys.hxx>
#include "errobject.hxx"
#include "runtime.hxx"