diff options
Diffstat (limited to 'sw/source')
-rw-r--r-- | sw/source/uibase/shells/drawdlg.cxx | 2 | ||||
-rw-r--r-- | sw/source/uibase/shells/drwtxtsh.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/uibase/shells/drawdlg.cxx b/sw/source/uibase/shells/drawdlg.cxx index 21dbe250db15..2edc3848a9c0 100644 --- a/sw/source/uibase/shells/drawdlg.cxx +++ b/sw/source/uibase/shells/drawdlg.cxx @@ -54,7 +54,7 @@ void SwDrawShell::ExecDrawDlg(SfxRequest& rReq) SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create(); if ( pFact ) { - ScopedVclPtr<SfxAbstractTabDialog> pDlg(pFact->CreateTextTabDialog( nullptr, &aNewAttr, pView )); + ScopedVclPtr<SfxAbstractTabDialog> pDlg(pFact->CreateTextTabDialog(rReq.GetFrameWeld(), &aNewAttr, pView)); sal_uInt16 nResult = pDlg->Execute(); if (nResult == RET_OK) diff --git a/sw/source/uibase/shells/drwtxtsh.cxx b/sw/source/uibase/shells/drwtxtsh.cxx index 130af5052b3e..f4a1f7f8b263 100644 --- a/sw/source/uibase/shells/drwtxtsh.cxx +++ b/sw/source/uibase/shells/drwtxtsh.cxx @@ -440,7 +440,7 @@ void SwDrawTextShell::ExecDraw(SfxRequest &rReq) if ( pFact ) { ScopedVclPtr<SfxAbstractTabDialog> pDlg(pFact->CreateTextTabDialog( - &(GetView().GetViewFrame()->GetWindow()), + GetView().GetViewFrame()->GetWindow().GetFrameWeld(), &aNewAttr, pSdrView )); sal_uInt16 nResult = pDlg->Execute(); |