summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-11-29 16:03:31 +0200
committerNoel Grandin <noel@peralex.com>2013-12-03 11:34:47 +0200
commit40da065f7e6c96821a4fda2f60ae1a75f174f5a3 (patch)
treea0f3e65a419af9126cda6d18093ade37b389791e /filter
parentc5ee41058193d346665bda092b8f692e2ecd43d5 (diff)
fix spelling delimeter -> delimiter
Change-Id: I12a330e922f8f6ffe9c746a26e5b32c0bbae626a
Diffstat (limited to 'filter')
-rw-r--r--filter/source/xsltdialog/typedetectionimport.cxx6
-rw-r--r--filter/source/xsltdialog/xmlfiltersettingsdialog.cxx2
2 files changed, 4 insertions, 4 deletions
diff --git a/filter/source/xsltdialog/typedetectionimport.cxx b/filter/source/xsltdialog/typedetectionimport.cxx
index e8be7db4414b..824a7acb5a92 100644
--- a/filter/source/xsltdialog/typedetectionimport.cxx
+++ b/filter/source/xsltdialog/typedetectionimport.cxx
@@ -99,18 +99,18 @@ void TypeDetectionImporter::fillFilterVector( XMLFilterVector& rFilters )
delete (*aIter++);
}
-static OUString getSubdata( int index, sal_Unicode delimeter, const OUString& rData )
+static OUString getSubdata( int index, sal_Unicode delimiter, const OUString& rData )
{
sal_Int32 nLastIndex = 0;
- sal_Int32 nNextIndex = rData.indexOf( delimeter );
+ sal_Int32 nNextIndex = rData.indexOf( delimiter );
OUString aSubdata;
while( index )
{
nLastIndex = nNextIndex + 1;
- nNextIndex = rData.indexOf( delimeter, nLastIndex );
+ nNextIndex = rData.indexOf( delimiter, nLastIndex );
index--;
diff --git a/filter/source/xsltdialog/xmlfiltersettingsdialog.cxx b/filter/source/xsltdialog/xmlfiltersettingsdialog.cxx
index deea834a4732..b7765e2e9231 100644
--- a/filter/source/xsltdialog/xmlfiltersettingsdialog.cxx
+++ b/filter/source/xsltdialog/xmlfiltersettingsdialog.cxx
@@ -280,7 +280,7 @@ static Sequence< OUString > createExtensionsSequence( const OUString& rExtension
// a non empty string has at least one extension
nExtensions++;
- // now count the delimeters ';'
+ // now count the delimiters ';'
const sal_Unicode * pString = rExtensions.getStr();
int i;
for( i = 0; i < nLength; i++, pString++ )