summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrzej Hunt <andrzej.hunt@collabora.com>2014-06-30 09:15:20 +0200
committerFridrich Štrba <fridrich.strba@bluewin.ch>2014-06-30 14:56:13 +0200
commita740e4b22f19779aa1f2c8cf1ee071d491ea1686 (patch)
tree20747efaf5b6ab8d9786bbbde06c75be43271ee0
parenta401d65088590e979051fa1af8ad2985a7bdcdb0 (diff)
More -WaE: nested template problems.
Change-Id: I896773bd37d855b83e9dfc260cae293a6f92100a
-rw-r--r--sd/source/ui/dlg/RemoteDialogClientBox.cxx6
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 );