diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2021-08-09 09:11:43 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-08-09 12:37:55 +0200 |
commit | 2c9ead762dce6f75350f71e6418a81afe0d89092 (patch) | |
tree | 75f3f163228a6c7b5913d5b76ce85b53683ab528 /ucb/source/ucp/file/bc.hxx | |
parent | 5470cc97d84a51dd4e541a8647ffe093bc4aa221 (diff) |
can pass PropertyChangeNotifier around by value
Change-Id: I0e88d5d9dc8dcfdf3310311038104fed2895119a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120195
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'ucb/source/ucp/file/bc.hxx')
-rw-r--r-- | ucb/source/ucp/file/bc.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ucb/source/ucp/file/bc.hxx b/ucb/source/ucp/file/bc.hxx index 2810b0a4d2ad..4b28b343652a 100644 --- a/ucb/source/ucp/file/bc.hxx +++ b/ucb/source/ucp/file/bc.hxx @@ -184,11 +184,11 @@ namespace fileaccess { // Notifier - std::unique_ptr<ContentEventNotifier> cDEL() override; - std::unique_ptr<ContentEventNotifier> cEXC( const OUString& aNewName ) override; - std::unique_ptr<ContentEventNotifier> cCEL() override; - std::unique_ptr<PropertySetInfoChangeNotifier> cPSL() override; - std::unique_ptr<PropertyChangeNotifier> cPCL() override; + std::optional<ContentEventNotifier> cDEL() override; + std::optional<ContentEventNotifier> cEXC( const OUString& aNewName ) override; + std::optional<ContentEventNotifier> cCEL() override; + std::optional<PropertySetInfoChangeNotifier> cPSL() override; + std::optional<PropertyChangeNotifier> cPCL() override; private: // Data members |