diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-08-17 17:28:58 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-08-18 12:18:34 +0200 |
commit | be3b1a8393ca3e77f31bea5d9caa7271fd53e9e4 (patch) | |
tree | ee82b947c5b3ba648a664dbc5b4be662ce84906c /include/svx | |
parent | f1a458a508cd300117338f9005bff82a923c4a60 (diff) |
weld OAppDetailPageHelper
Change-Id: I0fa9f21c30bba8f781178b0811f3f7d755af1bb3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100627
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/svx')
-rw-r--r-- | include/svx/dbaobjectex.hxx | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/include/svx/dbaobjectex.hxx b/include/svx/dbaobjectex.hxx index 4fe92b407d3a..d570fac7f5b3 100644 --- a/include/svx/dbaobjectex.hxx +++ b/include/svx/dbaobjectex.hxx @@ -26,21 +26,24 @@ namespace com::sun::star::ucb { class XContent; } - namespace svx { - - //= OComponentTransferable - - class SAL_WARN_UNUSED SVX_DLLPUBLIC OComponentTransferable final : public TransferableHelper + class SAL_WARN_UNUSED SVX_DLLPUBLIC OComponentTransferable final : public TransferDataContainer { public: /** construct the transferable */ OComponentTransferable( - const OUString& _rDatasourceOrLocation - ,const css::uno::Reference< css::ucb::XContent>& _xContent + const OUString& rDatasourceOrLocation, + const css::uno::Reference< css::ucb::XContent>& xContent + ); + + OComponentTransferable(); + + void Update( + const OUString& rDatasourceOrLocation, + const css::uno::Reference< css::ucb::XContent>& xContent ); /** checks whether or not a component descriptor can be extracted from the data flavor vector given @@ -63,11 +66,8 @@ namespace svx ODataAccessDescriptor m_aDescriptor; }; - - } - #endif // INCLUDED_SVX_DBAOBJECTEX_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |