summaryrefslogtreecommitdiff
path: root/sc/source/ui/vba
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/vba')
-rw-r--r--sc/source/ui/vba/vbaapplication.cxx6
-rw-r--r--sc/source/ui/vba/vbarange.cxx2
2 files changed, 4 insertions, 4 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;
}
diff --git a/sc/source/ui/vba/vbarange.cxx b/sc/source/ui/vba/vbarange.cxx
index 852fefadb30c..e40aab41c8e7 100644
--- a/sc/source/ui/vba/vbarange.cxx
+++ b/sc/source/ui/vba/vbarange.cxx
@@ -612,7 +612,7 @@ typedef ::std::vector< CellPos > vCellPos;
// #FIXME - QUICK
// we could probably could and should modify CellsEnumeration below
-// to handle rows and columns ( but I do this seperately for now
+// to handle rows and columns ( but I do this separately for now
// and.. this class only handles singe areas ( does it have to handle
// multi area ranges?? )
class ColumnsRowEnumeration: public CellsEnumeration_BASE