summaryrefslogtreecommitdiff
path: root/basctl/source/dlged
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2004-02-04 10:30:47 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2004-02-04 10:30:47 +0000
commitdf13af99a449cbeeab889c34c8b36e44e0634173 (patch)
tree71d4c5e859259a093a67a3f24df4f4346283e9ef /basctl/source/dlged
parent87830987c5a7886ae78e899d78a3f4916f9c7f7d (diff)
INTEGRATION: CWS tbe9 (1.30.4); FILE MERGED
2004/01/20 11:03:14 tbe 1.30.4.1: #114282# Basic IDE Dialog Editor: dialog control not visible
Diffstat (limited to 'basctl/source/dlged')
-rw-r--r--basctl/source/dlged/dlged.cxx13
1 files changed, 10 insertions, 3 deletions
diff --git a/basctl/source/dlged/dlged.cxx b/basctl/source/dlged/dlged.cxx
index 0ca10d1cd2fe..d72f67f68274 100644
--- a/basctl/source/dlged/dlged.cxx
+++ b/basctl/source/dlged/dlged.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: dlged.cxx,v $
*
- * $Revision: 1.30 $
+ * $Revision: 1.31 $
*
- * last change: $Author: vg $ $Date: 2004-01-06 17:14:39 $
+ * last change: $Author: hr $ $Date: 2004-02-04 11:30:47 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -122,6 +122,10 @@
#include <svx/svxids.hrc>
#endif
+#ifndef _SVDPAGV_HXX
+#include <svx/svdpagv.hxx>
+#endif
+
#ifndef _XMLSCRIPT_XML_HELPER_HXX_
#include <xmlscript/xml_helper.hxx>
#endif
@@ -615,7 +619,10 @@ IMPL_LINK( DlgEditor, PaintTimeout, Timer *, EMPTYARG )
}
}
- pDlgEdView->InitRedraw( pWindow, Region( aPaintRect ) );
+ // #114282# unbuffered paint
+ SdrPageView* pPgView = pDlgEdView->GetPageViewPvNum(0);
+ if ( pPgView )
+ pPgView->InitRedraw( 0, aPaintRect, pWindow );
nInPaint = FALSE;