summaryrefslogtreecommitdiff
path: root/sc/source/ui/vba/vbaapplication.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/vba/vbaapplication.cxx')
-rw-r--r--sc/source/ui/vba/vbaapplication.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/vba/vbaapplication.cxx b/sc/source/ui/vba/vbaapplication.cxx
index f13d801599ae..13c62fe16826 100644
--- a/sc/source/ui/vba/vbaapplication.cxx
+++ b/sc/source/ui/vba/vbaapplication.cxx
@@ -103,9 +103,9 @@ using ::com::sun::star::uno::UNO_QUERY;
// #TODO is this defined somewhere else?
#if ( defined UNX ) //unix
-#define FILE_PATH_SEPERATOR "/"
+#define FILE_PATH_SEPARATOR "/"
#else // windows
-#define FILE_PATH_SEPERATOR "\\"
+#define FILE_PATH_SEPARATOR "\\"
#endif
// ============================================================================
@@ -942,7 +942,7 @@ ScVbaApplication::getTemplatesPath() throw (uno::RuntimeException)
OUString SAL_CALL
ScVbaApplication::getPathSeparator() throw (uno::RuntimeException)
{
- static OUString sPathSep( FILE_PATH_SEPERATOR );
+ static OUString sPathSep( FILE_PATH_SEPARATOR );
return sPathSep;
}