diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-12-03 16:36:47 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-12-03 18:52:50 +0100 |
commit | be80b108daa0aa1db78b70c9c477d652b11d14a0 (patch) | |
tree | c51ca65695ac66de0207a76abe2797a417d04240 /sc | |
parent | affd2b5c4fba727c1b119bdcbdb71325c10ef954 (diff) |
should call Execute in the right place
Change-Id: I4a4b6047aed045349b24a3af70b739df7f93dc60
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/view/cellsh1.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/view/cellsh1.cxx b/sc/source/ui/view/cellsh1.cxx index e8122b3b3063..d8c03fdd06dd 100644 --- a/sc/source/ui/view/cellsh1.cxx +++ b/sc/source/ui/view/cellsh1.cxx @@ -1819,8 +1819,8 @@ void ScCellShell::ExecuteEdit( SfxRequest& rReq ) break; } pCondFormatDlg = new ScCondFormatDlg( pTabViewShell->GetDialogParent(), pDoc, NULL, aRangeList, aRangeList.GetTopLeftCorner(), eType ); - pCondFormatDlg->Execute(); } + pCondFormatDlg->Execute(); } break; |