diff options
author | Oliver Bolte <obo@openoffice.org> | 2004-03-17 15:28:28 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2004-03-17 15:28:28 +0000 |
commit | 824e4b8f918f4943677aa405bb3dc4141f3c0a5f (patch) | |
tree | 24ca7a8fd668400931d0b2c91053e6122544d1e9 /sc/source/ui | |
parent | a6fd7744d16887d4d460a4f08ef5b32c26d127fe (diff) |
INTEGRATION: CWS nn01 (1.51.56); FILE MERGED
2004/03/08 12:33:36 nn 1.51.56.1: #i23720# merge changes from CWS calcpp2
Diffstat (limited to 'sc/source/ui')
-rw-r--r-- | sc/source/ui/app/inputhdl.cxx | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sc/source/ui/app/inputhdl.cxx b/sc/source/ui/app/inputhdl.cxx index 6ff2eb91a0cf..1dbb95849983 100644 --- a/sc/source/ui/app/inputhdl.cxx +++ b/sc/source/ui/app/inputhdl.cxx @@ -2,9 +2,9 @@ * * $RCSfile: inputhdl.cxx,v $ * - * $Revision: 1.51 $ + * $Revision: 1.52 $ * - * last change: $Author: hr $ $Date: 2004-02-03 20:27:49 $ + * last change: $Author: obo $ $Date: 2004-03-17 16:28:28 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1728,6 +1728,11 @@ void ScInputHandler::DataChanged( BOOL bFromTopNotify ) // table EditEngine is formatted below, input line needs formatting after paste // #i20282# not when called from the input line's modify handler pTopView->GetEditEngine()->QuickFormatDoc( TRUE ); + + // #i23720# QuickFormatDoc hides the cursor, but can't show it again because it + // can't safely access the EditEngine's current view, so the cursor has to be + // shown again here. + pTopView->ShowCursor(); } bModified = TRUE; |