summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2013-02-23 17:20:45 +0100
committerJulien Nabet <serval2412@yahoo.fr>2013-02-23 17:20:45 +0100
commit3a014901fdc4134f4fae669b66b154b1137c2352 (patch)
treeb991fc3cabb21e4048bb41d894965e94c0b98e19 /sc
parente3f141323eea90259248cef4576ddb267b9c2d06 (diff)
Fix typo seperated/separated
Change-Id: I133423de994b1befe246b6c921802428a3528202
Diffstat (limited to 'sc')
-rw-r--r--sc/inc/chgtrack.hxx2
-rw-r--r--sc/source/ui/vba/vbarange.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/sc/inc/chgtrack.hxx b/sc/inc/chgtrack.hxx
index 83228bd9ad39..4c94932c2414 100644
--- a/sc/inc/chgtrack.hxx
+++ b/sc/inc/chgtrack.hxx
@@ -891,7 +891,7 @@ enum ScChangeTrackMergeState
};
// Internally generated actions start at this value (nearly all bits set)
-// and are decremented, to keep values in a table seperated from "normal" actions.
+// and are decremented, to keep values in a table separated from "normal" actions.
#define SC_CHGTRACK_GENERATED_START ((sal_uInt32) 0xfffffff0)
class ScChangeTrack : public utl::ConfigurationListener
diff --git a/sc/source/ui/vba/vbarange.cxx b/sc/source/ui/vba/vbarange.cxx
index 266f6b8d8e58..ab94414c892b 100644
--- a/sc/source/ui/vba/vbarange.cxx
+++ b/sc/source/ui/vba/vbarange.cxx
@@ -1170,7 +1170,7 @@ bool getScRangeListForAddress( const rtl::OUString& sName, ScDocShell* pDocSh, S
uno::Reference< beans::XPropertySet > xProps( pDocSh->GetModel(), uno::UNO_QUERY_THROW );
uno::Reference< container::XNameAccess > xNameAccess( xProps->getPropertyValue( "NamedRanges" ), uno::UNO_QUERY_THROW );
// Strangly enough you can have Range( "namedRange1, namedRange2, etc," )
- // loop around each ',' seperated name
+ // loop around each ',' separated name
std::vector< rtl::OUString > vNames;
sal_Int32 nIndex = 0;
do