diff options
author | Daniel Rentz <dr@openoffice.org> | 2010-01-15 12:00:39 +0100 |
---|---|---|
committer | Daniel Rentz <dr@openoffice.org> | 2010-01-15 12:00:39 +0100 |
commit | c8da47976e87c6953b80f5a833845983a0f2656a (patch) | |
tree | 625c3ca0f2add0e4982f654913a50a1938877258 /sc/source/ui/view/spelldialog.cxx | |
parent | 17afeb05f38050f8e93b59279e67a0860b2b760b (diff) |
dr74: migrate changes to hg
Diffstat (limited to 'sc/source/ui/view/spelldialog.cxx')
-rw-r--r-- | sc/source/ui/view/spelldialog.cxx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sc/source/ui/view/spelldialog.cxx b/sc/source/ui/view/spelldialog.cxx index 0e78cc3c0..21b298325 100644 --- a/sc/source/ui/view/spelldialog.cxx +++ b/sc/source/ui/view/spelldialog.cxx @@ -203,7 +203,12 @@ void ScSpellDialogChildWindow::Init() ScEditableTester aTester( mpDoc, rMarkData ); if( !aTester.IsEditable() ) { - mpViewShell->ErrorMessage( aTester.GetMessageId() ); + // #i85751# Don't show a ErrorMessage here, because the vcl + // parent of the InfoBox is not fully initialized yet. + // This leads to problems in the modality behaviour of the + // ScSpellDialogChildWindow. + + //mpViewShell->ErrorMessage( aTester.GetMessageId() ); return; } } |