summaryrefslogtreecommitdiff
path: root/codemaker
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2013-05-15 10:42:04 +0300
committerTor Lillqvist <tml@iki.fi>2013-05-15 11:14:28 +0300
commitcb6d67c21f11811c5bc023b9565c1c1b1f4081fa (patch)
treeff8a4b192a2ca846d32111732563432244135910 /codemaker
parent1a357b7394ac7b48b72821bff1aae4706265d7a4 (diff)
Spelling "separate" (etc) correctly is hard
Diffstat (limited to 'codemaker')
-rw-r--r--codemaker/source/codemaker/global.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/codemaker/source/codemaker/global.cxx b/codemaker/source/codemaker/global.cxx
index 34c43a9a2459..4324cb6226ae 100644
--- a/codemaker/source/codemaker/global.cxx
+++ b/codemaker/source/codemaker/global.cxx
@@ -86,14 +86,14 @@ OString createFileNameFromType( const OString& destination,
length += prefix.getLength() + type.getLength() + postfix.getLength();
- sal_Bool withSeperator = sal_False;
+ sal_Bool withSeparator = sal_False;
if (destination.getStr()[destination.getLength()] != '\\' &&
destination.getStr()[destination.getLength()] != '/' &&
type.getStr()[0] != '\\' &&
type.getStr()[0] != '/')
{
length++;
- withSeperator = sal_True;
+ withSeparator = sal_True;
}
OStringBuffer fileNameBuf(length);
@@ -103,7 +103,7 @@ OString createFileNameFromType( const OString& destination,
else
fileNameBuf.append(destination.getStr(), destination.getLength());
- if (withSeperator)
+ if (withSeparator)
fileNameBuf.append("/", 1);
OString tmpStr(type);