summaryrefslogtreecommitdiff
path: root/sc/source/ui/app/inputwin.cxx
diff options
context:
space:
mode:
authorSascha Ballach <sab@openoffice.org>2002-11-29 12:46:47 +0000
committerSascha Ballach <sab@openoffice.org>2002-11-29 12:46:47 +0000
commite6b15288f328887fb673105586a95b89f66ef8dd (patch)
treefd816e17b074e5fb5ee315d0de60b0d4d5ab53fa /sc/source/ui/app/inputwin.cxx
parent5cf23738069df846f5d4c79c605f9cdac1fccce9 (diff)
#105764#; switch into InputMode in SetTextString
Diffstat (limited to 'sc/source/ui/app/inputwin.cxx')
-rw-r--r--sc/source/ui/app/inputwin.cxx8
1 files changed, 6 insertions, 2 deletions
diff --git a/sc/source/ui/app/inputwin.cxx b/sc/source/ui/app/inputwin.cxx
index f9336ad92..ba6d00c50 100644
--- a/sc/source/ui/app/inputwin.cxx
+++ b/sc/source/ui/app/inputwin.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: inputwin.cxx,v $
*
- * $Revision: 1.28 $
+ * $Revision: 1.29 $
*
- * last change: $Author: nn $ $Date: 2002-11-21 15:00:03 $
+ * last change: $Author: sab $ $Date: 2002-11-29 13:46:47 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1115,6 +1115,8 @@ void ScTextWnd::SetTextString( const String& rNewString )
{
if ( rNewString != aString )
{
+ bInputMode = TRUE;
+
// Position der Aenderung suchen, nur Rest painten
long nInvPos = 0;
@@ -1184,6 +1186,8 @@ void ScTextWnd::SetTextString( const String& rNewString )
if (pAccTextData)
pAccTextData->TextChanged();
+
+ bInputMode = FALSE;
}
}