diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-10-10 16:11:14 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-10-11 09:53:32 +0200 |
commit | e6c4674418cd7423943599f3bd3cdf1643284690 (patch) | |
tree | e19e118da69c23d0d9ef450f42e76f845dbb9312 /sw/source/uibase/shells/drawsh.cxx | |
parent | e44efeea57c1925069b4c772adccd9b19b77cebb (diff) |
SwCursorShell argument of AttrChangedNotify is unused
Change-Id: I1fde665dcb77d29cad7f6a5c12e82c1822cff022
Reviewed-on: https://gerrit.libreoffice.org/80621
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sw/source/uibase/shells/drawsh.cxx')
-rw-r--r-- | sw/source/uibase/shells/drawsh.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/uibase/shells/drawsh.cxx b/sw/source/uibase/shells/drawsh.cxx index 3e6ae90b7c1b..d1b72f12ca82 100644 --- a/sw/source/uibase/shells/drawsh.cxx +++ b/sw/source/uibase/shells/drawsh.cxx @@ -227,7 +227,7 @@ void SwDrawShell::Execute(SfxRequest &rReq) } GetView().FlipDrawSelMode(); pSdrView->SetFrameDragSingles(GetView().IsDrawSelMode()); - GetView().AttrChangedNotify(&rSh); // Shell switch + GetView().AttrChangedNotify(nullptr); // Shell switch break; case SID_OBJECT_HELL: @@ -559,7 +559,7 @@ void SwDrawShell::ExecFormText(SfxRequest const & rReq) if ( pDrView->IsTextEdit() ) { pDrView->SdrEndTextEdit( true ); - GetView().AttrChangedNotify(&rSh); + GetView().AttrChangedNotify(nullptr); } pDrView->SetAttributes(rSet); |