diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-01-02 15:13:20 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-01-02 16:35:58 +0000 |
commit | d09888b835825085319d7b6855c3d5509539f42f (patch) | |
tree | 8aa1fd0e6af7d0d8fd00757ea8903936205af0b8 /svl/unx | |
parent | f61f34c900534b960f19425d1fe51608d6a4f12d (diff) |
use std::unique_ptr
Change-Id: I1c4f81e0ba0529b9e365c6ddb3d77a8a6a6d5741
Reviewed-on: https://gerrit.libreoffice.org/32649
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'svl/unx')
-rw-r--r-- | svl/unx/source/svdde/ddedummy.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/svl/unx/source/svdde/ddedummy.cxx b/svl/unx/source/svdde/ddedummy.cxx index 8714e9201be8..393759545a19 100644 --- a/svl/unx/source/svdde/ddedummy.cxx +++ b/svl/unx/source/svdde/ddedummy.cxx @@ -20,23 +20,23 @@ #include <svl/svdde.hxx> #include <rtl/instance.hxx> +struct DdeDataImp +{ +}; + DdeData::DdeData() - : pImp(nullptr) { } DdeData::DdeData( const OUString& ) - : pImp(nullptr) { } DdeData::DdeData( const DdeData& ) - : pImp(nullptr) { } DdeData::DdeData( const void*, long, SotClipboardFormatId) - : pImp(nullptr) { } |