diff options
author | Andrzej Hunt <andrzej.hunt@collabora.com> | 2014-06-30 09:15:20 +0200 |
---|---|---|
committer | Andrzej Hunt <andrzej.hunt@collabora.com> | 2014-06-30 09:16:24 +0200 |
commit | 679b1ed8655c3128e2f14a8d5cdc9be25c822bc0 (patch) | |
tree | b67dae62c13af8e2d900e08cf6625b7bf18fda9b /sd | |
parent | f8018266ccff7ecceb26795aeb91a6ca560e8467 (diff) |
More -WaE: nested template problems.
Change-Id: I896773bd37d855b83e9dfc260cae293a6f92100a
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/dlg/RemoteDialogClientBox.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/ui/dlg/RemoteDialogClientBox.cxx b/sd/source/ui/dlg/RemoteDialogClientBox.cxx index 35229104b35d..4af291f3e766 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 ); |