diff options
author | Michael Stahl <mstahl@redhat.com> | 2012-08-10 14:04:27 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-08-10 14:04:27 +0200 |
commit | 2626984db88f2a9a7cb1d880466beb4a7c1cd5c0 (patch) | |
tree | f7b3beeee64dd46fde8a65feedb100a102b18b91 /sd | |
parent | 2d63c4689a13599ec9389c370726005f01fea08c (diff) |
RemoteServer: ClientInfo is stored in STL vector, must be Assignable
Change-Id: Ie922207189ae0c7f5f9623043dcc38705b1f7364
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/inc/RemoteServer.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/ui/inc/RemoteServer.hxx b/sd/source/ui/inc/RemoteServer.hxx index b614dd1a8f37..d3e202ba7fae 100644 --- a/sd/source/ui/inc/RemoteServer.hxx +++ b/sd/source/ui/inc/RemoteServer.hxx @@ -43,8 +43,8 @@ namespace sd struct ClientInfo { - const rtl::OUString mName; - const rtl::OUString mAddress; + rtl::OUString mName; + rtl::OUString mAddress; enum PROTOCOL { NETWORK = 1, BLUETOOTH }; ClientInfo( OUString rName, OUString rAddress) : @@ -78,4 +78,4 @@ namespace sd } #endif // _SD_IMPRESSREMOTE_SERVER_HXX -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
\ No newline at end of file +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |