diff options
author | danielt998 <daniel@fearnley.net> | 2016-02-11 22:07:09 +0000 |
---|---|---|
committer | Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> | 2016-02-12 15:29:25 +0000 |
commit | 2b31daf74e33b988c849cb26e88fa7657a4015af (patch) | |
tree | b4385985063c60b7900c63a1a229ef5165dbc12d /basic/source/uno | |
parent | 662406b44d16c713c3d42585b57caf46689980f0 (diff) |
tdf#95857 Sort out German plurals ...
Made a start in removing the incorrect 'Infos' German plural
Change-Id: Ie989351a7473fc35b563e63ce6a4fb229093af60
Reviewed-on: https://gerrit.libreoffice.org/22301
Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Tested-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Diffstat (limited to 'basic/source/uno')
-rw-r--r-- | basic/source/uno/scriptcont.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/basic/source/uno/scriptcont.cxx b/basic/source/uno/scriptcont.cxx index ab49180eeafd..ca57a71580eb 100644 --- a/basic/source/uno/scriptcont.cxx +++ b/basic/source/uno/scriptcont.cxx @@ -1260,16 +1260,16 @@ script::ModuleInfo SAL_CALL SfxScriptLibrary::getModuleInfo( const OUString& Mod { throw NoSuchElementException(); } - return mModuleInfos[ ModuleName ]; + return mModuleInfo[ ModuleName ]; } sal_Bool SAL_CALL SfxScriptLibrary::hasModuleInfo( const OUString& ModuleName ) throw (RuntimeException, std::exception) { bool bRes = false; - ModuleInfoMap::iterator it = mModuleInfos.find( ModuleName ); + ModuleInfoMap::iterator it = mModuleInfo.find( ModuleName ); - if ( it != mModuleInfos.end() ) + if ( it != mModuleInfo.end() ) { bRes = true; } @@ -1283,7 +1283,7 @@ void SAL_CALL SfxScriptLibrary::insertModuleInfo( const OUString& ModuleName, co { throw ElementExistException(); } - mModuleInfos[ ModuleName ] = ModuleInfo; + mModuleInfo[ ModuleName ] = ModuleInfo; } void SAL_CALL SfxScriptLibrary::removeModuleInfo( const OUString& ModuleName ) @@ -1294,7 +1294,7 @@ void SAL_CALL SfxScriptLibrary::removeModuleInfo( const OUString& ModuleName ) { throw NoSuchElementException(); } - mModuleInfos.erase( mModuleInfos.find( ModuleName ) ); + mModuleInfo.erase( mModuleInfo.find( ModuleName ) ); } } // namespace basic |