diff options
author | Michael Stahl <mstahl@redhat.com> | 2011-11-30 16:08:23 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2011-12-03 00:48:13 +0100 |
commit | db74fdf5346c4f97256522ee2a3200fcdce1af5a (patch) | |
tree | 46f79b6c8d8c37bc3ba3c018bff0919483273373 /starmath | |
parent | 4f201dc32b58b56e27fa12b6c770ff38c2da7230 (diff) |
sfx2::DocumentInserter: remove nFlags ctor param
Diffstat (limited to 'starmath')
-rw-r--r-- | starmath/source/view.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/starmath/source/view.cxx b/starmath/source/view.cxx index 15861c062a18..66626a089062 100644 --- a/starmath/source/view.cxx +++ b/starmath/source/view.cxx @@ -1792,8 +1792,8 @@ void SmViewShell::Execute(SfxRequest& rReq) delete pImpl->pRequest; pImpl->pRequest = new SfxRequest( rReq ); delete pImpl->pDocInserter; - pImpl->pDocInserter = - new ::sfx2::DocumentInserter( 0, GetDoc()->GetFactory().GetFactoryName(), 0 ); + pImpl->pDocInserter = new ::sfx2::DocumentInserter( + GetDoc()->GetFactory().GetFactoryName(), 0 ); pImpl->pDocInserter->StartExecuteModal( LINK( this, SmViewShell, DialogClosedHdl ) ); break; } |