diff options
author | Matteo Casalin <matteo.casalin@yahoo.com> | 2017-03-16 18:09:20 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2017-04-18 16:24:37 +0200 |
commit | e2d3e936ab03274696f235c9d74e247380070f6f (patch) | |
tree | 2737c6251ab44f4b5c772429b7d42a3414d9fb89 /starmath | |
parent | f3ab7e1403f60ad4f9137e68241e68aa06b2fb1e (diff) |
tdf#95992 "Edit" > "Compare Document..." opens dialog that is...
misnamed "Insert"
Issue is that the caption of the dialog is handled by generic code,
which was not designed with comparison in mind. This fix extends the
captions that can be used by such generic codes, without modifying
the underlaying architecture.
Letting callers directly provide caption text might be more versatile,
though.
The fix is extended to:
* Writer Merge functionality
* Calc Compare/Merge functionalities
which use the same dialog (and thus were also displaying "Insert").
Change-Id: I452b37bf7d0024924c87316cd47572c09b373b65
Reviewed-on: https://gerrit.libreoffice.org/35285
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Tested-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'starmath')
-rw-r--r-- | starmath/source/view.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/starmath/source/view.cxx b/starmath/source/view.cxx index 50a1a5f7b616..82c1082e38ea 100644 --- a/starmath/source/view.cxx +++ b/starmath/source/view.cxx @@ -1597,7 +1597,7 @@ void SmViewShell::Execute(SfxRequest& rReq) { mpImpl->pRequest.reset(new SfxRequest( rReq )); mpImpl->pDocInserter.reset(new ::sfx2::DocumentInserter( - GetDoc()->GetFactory().GetFactoryName(), false )); + GetDoc()->GetFactory().GetFactoryName())); mpImpl->pDocInserter->StartExecuteModal( LINK( this, SmViewShell, DialogClosedHdl ) ); break; } |