diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2016-02-26 20:33:52 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2016-02-26 20:33:52 +0100 |
commit | 6689a9aaf75d291596a6b13acf1e1772af148e1b (patch) | |
tree | 674bf5f61b0753976bd7df9bfe1e09e0b0622a3d /dbaccess | |
parent | 4b63e7ee7e286b116d60dda676349024808182ed (diff) |
Typo: aCompoments->aComponents
Change-Id: Ied7413a74b2ed0ea7a6375760c4477ce6f17a4de
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/ui/app/AppControllerGen.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dbaccess/source/ui/app/AppControllerGen.cxx b/dbaccess/source/ui/app/AppControllerGen.cxx index bd081777caf8..19aed63d465f 100644 --- a/dbaccess/source/ui/app/AppControllerGen.cxx +++ b/dbaccess/source/ui/app/AppControllerGen.cxx @@ -703,7 +703,7 @@ void OApplicationController::doAction(sal_uInt16 _nId, const ElementOpenMode _eO eOpenMode = E_OPEN_NORMAL; } - ::std::vector< ::std::pair< OUString ,Reference< XModel > > > aCompoments; + ::std::vector< ::std::pair< OUString ,Reference< XModel > > > aComponents; ::std::vector< OUString>::iterator aEnd = aList.end(); for (::std::vector< OUString>::iterator aIter = aList.begin(); aIter != aEnd; ++aIter) { @@ -712,7 +712,7 @@ void OApplicationController::doAction(sal_uInt16 _nId, const ElementOpenMode _eO else { Reference< XModel > xModel( openElementWithArguments( *aIter, eType, eOpenMode, _nId,aArguments ), UNO_QUERY ); - aCompoments.push_back( ::std::pair< OUString, Reference< XModel > >( *aIter, xModel ) ); + aComponents.push_back( ::std::pair< OUString, Reference< XModel > >( *aIter, xModel ) ); } } @@ -720,8 +720,8 @@ void OApplicationController::doAction(sal_uInt16 _nId, const ElementOpenMode _eO if ( _eOpenMode == E_OPEN_FOR_MAIL ) { - ::std::vector< ::std::pair< OUString ,Reference< XModel > > >::iterator componentIter = aCompoments.begin(); - ::std::vector< ::std::pair< OUString ,Reference< XModel > > >::iterator componentEnd = aCompoments.end(); + ::std::vector< ::std::pair< OUString ,Reference< XModel > > >::iterator componentIter = aComponents.begin(); + ::std::vector< ::std::pair< OUString ,Reference< XModel > > >::iterator componentEnd = aComponents.end(); OUString aDocTypeString; SfxMailModel aSendMail; SfxMailModel::SendMailResult eResult = SfxMailModel::SEND_MAIL_OK; |