diff options
author | Caolán McNamara <caolan.mcnamara@collabora.com> | 2023-07-01 20:01:26 +0100 |
---|---|---|
committer | Caolán McNamara <caolan.mcnamara@collabora.com> | 2023-07-02 15:51:06 +0200 |
commit | 968428500501e247529ab998af0f8a1921782b0b (patch) | |
tree | 4e94e9418d20eed92e725c413242df8c87f7f54b /include | |
parent | 884a2cd39a7c0433a5bbbf4e83e2a9b16cdad71c (diff) |
pAttr is always dereferenced, use a reference instead of a pointer
Change-Id: I76ebce9085b9e47a6c571ddbcafa44d0d3a0f97f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/153850
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/svx/svxdlg.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/svx/svxdlg.hxx b/include/svx/svxdlg.hxx index d361c6800dca..3ac7ac86d008 100644 --- a/include/svx/svxdlg.hxx +++ b/include/svx/svxdlg.hxx @@ -437,7 +437,7 @@ public: const sal_uInt16 _nInitiallySelectedEvent ) = 0; - virtual VclPtr<SfxAbstractTabDialog> CreateSvxFormatCellsDialog(weld::Window* pParent, const SfxItemSet* pAttr, const SdrModel& rModel, bool bStyle)=0; + virtual VclPtr<SfxAbstractTabDialog> CreateSvxFormatCellsDialog(weld::Window* pParent, const SfxItemSet& rAttr, const SdrModel& rModel, bool bStyle)=0; virtual VclPtr<SvxAbstractSplitTableDialog> CreateSvxSplitTableDialog(weld::Window* pParent, bool bIsTableVertical, tools::Long nMaxVertical) = 0; |