Fix typo
Change-Id: Ia19534f38ed01a44262b47ad04e98dde6948669b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/167601 Tested-by: Jenkins Reviewed-by: Taichi Haradaguchi <20001722@ymail.ne.jp>
This commit is contained in:
parent
2fb694785d
commit
f597c88103
1 changed files with 3 additions and 3 deletions
|
@ -492,7 +492,7 @@ MasterScriptProvider::insertByName( const OUString& aName, const Any& aElement )
|
|||
{
|
||||
if ( !m_xMSPPkg.is() )
|
||||
{
|
||||
throw RuntimeException( u"PackageMasterScriptProvider is unitialised"_ustr );
|
||||
throw RuntimeException( u"PackageMasterScriptProvider is uninitialised"_ustr );
|
||||
}
|
||||
|
||||
Reference< container::XNameContainer > xCont( m_xMSPPkg, UNO_QUERY_THROW );
|
||||
|
@ -537,7 +537,7 @@ MasterScriptProvider::removeByName( const OUString& Name )
|
|||
{
|
||||
if ( !m_xMSPPkg.is() )
|
||||
{
|
||||
throw RuntimeException( u"PackageMasterScriptProvider is unitialised"_ustr );
|
||||
throw RuntimeException( u"PackageMasterScriptProvider is uninitialised"_ustr );
|
||||
}
|
||||
|
||||
Reference< container::XNameContainer > xCont( m_xMSPPkg, UNO_QUERY_THROW );
|
||||
|
@ -598,7 +598,7 @@ MasterScriptProvider::hasByName( const OUString& aName )
|
|||
// have a PackageProvider
|
||||
else if (!m_xModel.is())
|
||||
{
|
||||
throw RuntimeException( u"PackageMasterScriptProvider is unitialised"_ustr );
|
||||
throw RuntimeException( u"PackageMasterScriptProvider is uninitialised"_ustr );
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue