[Libreoffice-commits] core.git: dbaccess/source

Julien Nabet serval2412 at yahoo.fr
Fri Feb 26 19:34:21 UTC 2016


 dbaccess/source/ui/app/AppControllerGen.cxx |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 6689a9aaf75d291596a6b13acf1e1772af148e1b
Author: Julien Nabet <serval2412 at yahoo.fr>
Date:   Fri Feb 26 20:33:52 2016 +0100

    Typo: aCompoments->aComponents
    
    Change-Id: Ied7413a74b2ed0ea7a6375760c4477ce6f17a4de

diff --git a/dbaccess/source/ui/app/AppControllerGen.cxx b/dbaccess/source/ui/app/AppControllerGen.cxx
index bd08177..19aed63 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;


More information about the Libreoffice-commits mailing list