summaryrefslogtreecommitdiff
path: root/sw/source/core/access/accdoc.cxx
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2008-01-15 12:48:13 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2008-01-15 12:48:13 +0000
commitb8b7649518732bbdaece84b558c0fe27e1435749 (patch)
treedb0c05c0f039a2922dad8c79c4053633bab9cca4 /sw/source/core/access/accdoc.cxx
parent652dcee8e93d3bc3acb31fe64c2b5ce89248d945 (diff)
INTEGRATION: CWS sw8u10bf03 (1.31.116); FILE MERGED
2007/12/07 10:23:15 od 1.31.116.1: #i58139# method <SwAccessibleDocumentBase::SetVisArea()> - update of document view's showing state is also needed. Thus, call method <Scrolled(..)> instead of <ChildrenScrolled(..)>
Diffstat (limited to 'sw/source/core/access/accdoc.cxx')
-rw-r--r--sw/source/core/access/accdoc.cxx11
1 files changed, 8 insertions, 3 deletions
diff --git a/sw/source/core/access/accdoc.cxx b/sw/source/core/access/accdoc.cxx
index 84424c415d1b..903bb1ea7623 100644
--- a/sw/source/core/access/accdoc.cxx
+++ b/sw/source/core/access/accdoc.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: accdoc.cxx,v $
*
- * $Revision: 1.31 $
+ * $Revision: 1.32 $
*
- * last change: $Author: hr $ $Date: 2007-09-27 08:19:24 $
+ * last change: $Author: ihi $ $Date: 2008-01-15 13:48:13 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -129,7 +129,12 @@ void SwAccessibleDocumentBase::SetVisArea()
if( aOldVisArea != rNewVisArea )
{
SwAccessibleFrame::SetVisArea( GetMap()->GetVisArea() );
- ChildrenScrolled( GetFrm(), aOldVisArea );
+ // --> OD 2007-12-07 #i58139#
+ // showing state of document view needs also be updated.
+ // Thus, call method <Scrolled(..)> instead of <ChildrenScrolled(..)>
+// ChildrenScrolled( GetFrm(), aOldVisArea );
+ Scrolled( aOldVisArea );
+ // <--
}
}