summaryrefslogtreecommitdiff
path: root/lingucomponent/source/lingutil/lingutil.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'lingucomponent/source/lingutil/lingutil.cxx')
-rw-r--r--lingucomponent/source/lingutil/lingutil.cxx30
1 files changed, 15 insertions, 15 deletions
diff --git a/lingucomponent/source/lingutil/lingutil.cxx b/lingucomponent/source/lingutil/lingutil.cxx
index de7cdc3f4539..728a67399f3d 100644
--- a/lingucomponent/source/lingutil/lingutil.cxx
+++ b/lingucomponent/source/lingutil/lingutil.cxx
@@ -2,7 +2,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -129,33 +129,33 @@ std::vector< SvtLinguConfigDictionaryEntry > GetOldStyleDics( const char *pDicTy
bool bThes = false;
if (strcmp( pDicType, "DICT" ) == 0)
{
- aFormatName = A2OU("DICT_SPELL");
- aDicExtension = String::CreateFromAscii( ".dic" );
+ aFormatName = A2OU("DICT_SPELL");
+ aDicExtension = String::CreateFromAscii( ".dic" );
#ifdef SYSTEM_DICTS
- aSystemDir = A2OU( DICT_SYSTEM_DIR );
- aSystemSuffix = aDicExtension;
+ aSystemDir = A2OU( DICT_SYSTEM_DIR );
+ aSystemSuffix = aDicExtension;
#endif
bSpell = true;
}
else if (strcmp( pDicType, "HYPH" ) == 0)
{
- aFormatName = A2OU("DICT_HYPH");
- aDicExtension = String::CreateFromAscii( ".dic" );
+ aFormatName = A2OU("DICT_HYPH");
+ aDicExtension = String::CreateFromAscii( ".dic" );
#ifdef SYSTEM_DICTS
- aSystemDir = A2OU( HYPH_SYSTEM_DIR );
- aSystemPrefix = A2OU( "hyph_" );
- aSystemSuffix = aDicExtension;
+ aSystemDir = A2OU( HYPH_SYSTEM_DIR );
+ aSystemPrefix = A2OU( "hyph_" );
+ aSystemSuffix = aDicExtension;
#endif
bHyph = true;
}
else if (strcmp( pDicType, "THES" ) == 0)
{
- aFormatName = A2OU("DICT_THES");
- aDicExtension = String::CreateFromAscii( ".dat" );
+ aFormatName = A2OU("DICT_THES");
+ aDicExtension = String::CreateFromAscii( ".dat" );
#ifdef SYSTEM_DICTS
- aSystemDir = A2OU( THES_SYSTEM_DIR );
- aSystemPrefix = A2OU( "th_" );
- aSystemSuffix = A2OU( "_v2.dat" );
+ aSystemDir = A2OU( THES_SYSTEM_DIR );
+ aSystemPrefix = A2OU( "th_" );
+ aSystemSuffix = A2OU( "_v2.dat" );
#endif
bThes = true;
}