summaryrefslogtreecommitdiffstats
path: root/dbaccess/source/ui/app/AppControllerGen.cxx
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2016-02-26 20:33:52 +0100
committerJulien Nabet <serval2412@yahoo.fr>2016-02-26 20:33:52 +0100
commit6689a9aaf75d291596a6b13acf1e1772af148e1b (patch)
tree674bf5f61b0753976bd7df9bfe1e09e0b0622a3d /dbaccess/source/ui/app/AppControllerGen.cxx
parenttdf#97654 - replaced CellAddress types with ScAddress. (diff)
downloadcore-6689a9aaf75d291596a6b13acf1e1772af148e1b.tar.gz
core-6689a9aaf75d291596a6b13acf1e1772af148e1b.zip
Typo: aCompoments->aComponents
Change-Id: Ied7413a74b2ed0ea7a6375760c4477ce6f17a4de
Diffstat (limited to 'dbaccess/source/ui/app/AppControllerGen.cxx')
-rw-r--r--dbaccess/source/ui/app/AppControllerGen.cxx8
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;