From b1afe0f67dca54e3deec4110f1760dd4880e6762 Mon Sep 17 00:00:00 2001
From: Jens-Heiner Rechtien
Date: Wed, 29 Jul 2009 15:33:56 +0000
Subject: CWS-TOOLING: integrate CWS cmcfixes61 2009-07-22 10:53:14 +0200 cmc
r274224 : #i103714# duplicate patch 2009-07-22 10:45:26 +0200 cmc r274223 :
#i103715# fix up m68k makefile.mk 2009-07-22 10:32:16 +0200 cmc r274222 :
#i103714# || && new gcc warnings 2009-07-21 13:29:17 +0200 cmc r274190 :
#i103651# fix for subpixel gray line in cairo canvas animations 2009-07-20
17:35:58 +0200 cmc r274151 : #i103668# WaE over use of const 2009-07-20
15:53:51 +0200 cmc r274146 : #i103664# use boost::addressof instead
2009-07-20 15:38:40 +0200 cmc r274145 : #i103451# long -> INT32 for these
streamable values 2009-07-20 15:33:15 +0200 cmc r274144 : #i103663 clear
low-hanging aliasing warnings 2009-07-20 15:28:23 +0200 cmc r274143 :
#i103662 clear low-hanging aliasing warnings 2009-07-20 15:21:46 +0200 cmc
r274142 : #i103661 clear low-hanging aliasing warnings 2009-07-20 15:16:05
+0200 cmc r274141 : #i103660 clear low-hanging aliasing warnings
---
svtools/source/control/scrwin.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
(limited to 'svtools/source/control/scrwin.cxx')
diff --git a/svtools/source/control/scrwin.cxx b/svtools/source/control/scrwin.cxx
index 9805110c9254..162f23948385 100644
--- a/svtools/source/control/scrwin.cxx
+++ b/svtools/source/control/scrwin.cxx
@@ -273,8 +273,8 @@ void __EXPORT ScrollableWindow::Resize()
// disable painting in the corner between the scrollbars
if ( bVVisible && bHVisible )
{
- aCornerWin.SetPosSizePixel(
- *((Point*) &aOutPixSz), Size(nScrSize, nScrSize) );
+ aCornerWin.SetPosSizePixel(Point(aOutPixSz.Width(), aOutPixSz.Height()),
+ Size(nScrSize, nScrSize) );
aCornerWin.Show();
}
else
--
cgit