diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-02-08 13:04:44 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-02-09 09:51:05 +0000 |
commit | bca47d830eaf13f6032985982582dce3fd335e4e (patch) | |
tree | ae298bfdea100be0dcbdd86fd8bfaf757d160409 /vcl/headless/svpinst.cxx | |
parent | 4ccdf7932e84bd78a366bb4ae2785c63e33a9403 (diff) |
remove ConnectionIdentifierType enum
since we only use the AsciiCString enumerator.
Consequently simplify the GetConnectionIdentifier method
Change-Id: I9e1a1318d2f12bfd18edeb8479e0e7171b22d0f1
Reviewed-on: https://gerrit.libreoffice.org/34026
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/headless/svpinst.cxx')
-rw-r--r-- | vcl/headless/svpinst.cxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/vcl/headless/svpinst.cxx b/vcl/headless/svpinst.cxx index 710305d18d15..f46722da4da5 100644 --- a/vcl/headless/svpinst.cxx +++ b/vcl/headless/svpinst.cxx @@ -415,11 +415,9 @@ SalSession* SvpSalInstance::CreateSalSession() return nullptr; } -void* SvpSalInstance::GetConnectionIdentifier( ConnectionIdentifierType& rReturnedType, int& rReturnedBytes ) +OUString SvpSalInstance::GetConnectionIdentifier() { - rReturnedBytes = 1; - rReturnedType = AsciiCString; - return const_cast<char*>(""); + return OUString(""); } void SvpSalInstance::StopTimer() |