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

Andrzej Hunt andrzej.hunt at collabora.com
Mon Jun 30 00:16:15 PDT 2014


 sd/source/ui/dlg/RemoteDialogClientBox.cxx |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 679b1ed8655c3128e2f14a8d5cdc9be25c822bc0
Author: Andrzej Hunt <andrzej.hunt at collabora.com>
Date:   Mon Jun 30 09:15:20 2014 +0200

    More -WaE: nested template problems.
    
    Change-Id: I896773bd37d855b83e9dfc260cae293a6f92100a

diff --git a/sd/source/ui/dlg/RemoteDialogClientBox.cxx b/sd/source/ui/dlg/RemoteDialogClientBox.cxx
index 3522910..4af291f 100644
--- a/sd/source/ui/dlg/RemoteDialogClientBox.cxx
+++ b/sd/source/ui/dlg/RemoteDialogClientBox.cxx
@@ -687,11 +687,11 @@ void ClientBox::populateEntries()
 #ifdef ENABLE_SDREMOTE
     RemoteServer::ensureDiscoverable();
 
-    vector<::boost::shared_ptr<ClientInfo>> aClients( RemoteServer::getClients() );
+    vector< ::boost::shared_ptr< ClientInfo > > aClients( RemoteServer::getClients() );
 
-    const vector<::boost::shared_ptr<ClientInfo>>::const_iterator aEnd( aClients.end() );
+    const vector< ::boost::shared_ptr<ClientInfo > >::const_iterator aEnd( aClients.end() );
 
-    for ( vector<::boost::shared_ptr<ClientInfo>>::const_iterator aIt( aClients.begin() );
+    for ( vector< ::boost::shared_ptr< ClientInfo > >::const_iterator aIt( aClients.begin() );
         aIt != aEnd; ++aIt )
     {
         addEntry( *aIt );


More information about the Libreoffice-commits mailing list