diff options
Diffstat (limited to 'sd/source/ui/dlg/RemoteDialogClientBox.cxx')
-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 ); |