summaryrefslogtreecommitdiff
path: root/cui/source/options/optasian.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'cui/source/options/optasian.cxx')
-rw-r--r--cui/source/options/optasian.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/options/optasian.cxx b/cui/source/options/optasian.cxx
index 5509f0c526f1..da87582e22b7 100644
--- a/cui/source/options/optasian.cxx
+++ b/cui/source/options/optasian.cxx
@@ -52,7 +52,7 @@ struct SvxForbiddenChars_Impl
std::unique_ptr<ForbiddenCharacters> pCharacters;
};
-typedef ::std::map< LanguageType, SvxForbiddenChars_Impl* > SvxForbiddenCharacterMap_Impl;
+typedef std::map< LanguageType, SvxForbiddenChars_Impl* > SvxForbiddenCharacterMap_Impl;
struct SvxAsianLayoutPage_Impl
{
@@ -103,7 +103,7 @@ void SvxAsianLayoutPage_Impl::addForbiddenCharacters(
SvxForbiddenChars_Impl* pChar = new SvxForbiddenChars_Impl;
pChar->bRemoved = nullptr == pForbidden;
pChar->pCharacters.reset( pForbidden ? new ForbiddenCharacters(*pForbidden) : nullptr );
- aChangedLanguagesMap.insert( ::std::make_pair( eLang, pChar ) );
+ aChangedLanguagesMap.insert( std::make_pair( eLang, pChar ) );
}
else
{