diff options
Diffstat (limited to 'sd/source')
-rw-r--r-- | sd/source/ui/dlg/RemoteDialogClientBox.cxx | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sd/source/ui/dlg/RemoteDialogClientBox.cxx b/sd/source/ui/dlg/RemoteDialogClientBox.cxx index 373a648a5fd3..2371c4fb8256 100644 --- a/sd/source/ui/dlg/RemoteDialogClientBox.cxx +++ b/sd/source/ui/dlg/RemoteDialogClientBox.cxx @@ -24,10 +24,6 @@ #include <vcl/svapp.hxx> -using namespace std; - -using namespace ::com::sun::star; - namespace sd { // struct ClientBoxEntry @@ -107,7 +103,7 @@ void ClientBox::populateEntries() #ifdef ENABLE_SDREMOTE RemoteServer::ensureDiscoverable(); - vector< std::shared_ptr< ClientInfo > > aClients( RemoteServer::getClients() ); + std::vector< std::shared_ptr< ClientInfo > > aClients( RemoteServer::getClients() ); for ( const auto& rxClient : aClients ) { |