diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-04-30 10:41:16 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-04-30 15:17:50 +0200 |
commit | 5fb3b6b925db2989ce61bb954d7156f2a3b84b4c (patch) | |
tree | 13ed09384bdae6b1186bb1bc3b995775909908e2 /sd | |
parent | 809d59534f519b55d8d55bc03ef35264a2ffe329 (diff) |
weld SvxNewTableDialog
Change-Id: I33189708a2f1b63080cbafc94fe288f8abe60830
Reviewed-on: https://gerrit.libreoffice.org/53652
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/table/tablefunction.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/table/tablefunction.cxx b/sd/source/ui/table/tablefunction.cxx index e85d27a810fb..4a998e0dc8ad 100644 --- a/sd/source/ui/table/tablefunction.cxx +++ b/sd/source/ui/table/tablefunction.cxx @@ -124,7 +124,7 @@ void DrawViewShell::FuTable(SfxRequest& rReq) if( (nColumns == 0) || (nRows == 0) ) { SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create(); - ScopedVclPtr<SvxAbstractNewTableDialog> pDlg( pFact ? pFact->CreateSvxNewTableDialog() : nullptr); + ScopedVclPtr<SvxAbstractNewTableDialog> pDlg( pFact ? pFact->CreateSvxNewTableDialog(rReq.GetFrameWeld()) : nullptr); if( !pDlg.get() || (pDlg->Execute() != RET_OK) ) break; |