diff options
author | Caolán McNamara <caolanm@redhat.com> | 2021-10-11 14:12:48 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2021-10-11 17:10:10 +0200 |
commit | 8fb4889840a6c79f6bad7bb7a322d86b751cdd93 (patch) | |
tree | 6bfd83cf4ad3711a7e3152b15218b0e21db3d773 /include | |
parent | 6a515900f93e46af40c7d8cc8ced6fffda1d8ffa (diff) |
Related: tdf#145033 don't print "There is no implementation..." warning
don't output "There is no implementation for QueryValue for this item!"
for SfxObjectItem
Change-Id: Ib4b944efa7e9d152d662ed447d8c02ec24d58391
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/123392
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/sfx2/objitem.hxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/sfx2/objitem.hxx b/include/sfx2/objitem.hxx index 7fb199c88ab1..17b7f0cf1de2 100644 --- a/include/sfx2/objitem.hxx +++ b/include/sfx2/objitem.hxx @@ -36,6 +36,9 @@ public: virtual bool operator==( const SfxPoolItem& ) const override; virtual SfxObjectItem* Clone( SfxItemPool *pPool = nullptr ) const override; + virtual bool QueryValue(css::uno::Any&, sal_uInt8 nMemberId = 0) const override; + virtual bool PutValue(const css::uno::Any&, sal_uInt8) override; + SfxShell* GetShell() const { return _pSh; } }; |