diff options
author | Caolán McNamara <caolan.mcnamara@collabora.com> | 2023-10-07 18:55:09 +0100 |
---|---|---|
committer | Caolán McNamara <caolan.mcnamara@collabora.com> | 2023-10-08 13:17:38 +0200 |
commit | e0f85bc22df4119101d854efaf53c7dd568f944c (patch) | |
tree | 907078738d59294f52c511b8e0cda55b1bda82fb /sfx2 | |
parent | 889848163e8dcb32d58f85ddaf2748517a37b9b9 (diff) |
SfxRequest doesn't need to inherit from SfxHint
or anything
Change-Id: Ibfedb7dce6503b5593111380c53fc0ef6c7e93af
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157680
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/control/request.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sfx2/source/control/request.cxx b/sfx2/source/control/request.cxx index 9279b5dceb5a..5da3517df107 100644 --- a/sfx2/source/control/request.cxx +++ b/sfx2/source/control/request.cxx @@ -133,8 +133,7 @@ SfxRequest::SfxRequest ( const SfxRequest& rOrig ) -: SfxHint( rOrig ), - nSlot(rOrig.nSlot), +: nSlot(rOrig.nSlot), pArgs(rOrig.pArgs? new SfxAllItemSet(*rOrig.pArgs): nullptr), pImpl( new SfxRequest_Impl(this) ) { |