summaryrefslogtreecommitdiff
path: root/vcl/source/window/floatwin.cxx
diff options
context:
space:
mode:
authorStephan Schäfer <ssa@openoffice.org>2002-04-16 06:58:29 +0000
committerStephan Schäfer <ssa@openoffice.org>2002-04-16 06:58:29 +0000
commit5d3128fd92300a8eb5c1b51a44142c3d7a2e7c47 (patch)
tree22c14389a0c393fcb3cc8dd8de24ebe983bc8352 /vcl/source/window/floatwin.cxx
parentbcaa2e6597a51c53e335f06b16337f0b94e935f1 (diff)
#96972# changed GetPosPixel for frames
Diffstat (limited to 'vcl/source/window/floatwin.cxx')
-rw-r--r--vcl/source/window/floatwin.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/vcl/source/window/floatwin.cxx b/vcl/source/window/floatwin.cxx
index 9978ae699911..5539e7c8c3c2 100644
--- a/vcl/source/window/floatwin.cxx
+++ b/vcl/source/window/floatwin.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: floatwin.cxx,v $
*
- * $Revision: 1.12 $
+ * $Revision: 1.13 $
*
- * last change: $Author: ssa $ $Date: 2002-03-27 15:31:08 $
+ * last change: $Author: ssa $ $Date: 2002-04-16 07:58:29 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -413,7 +413,8 @@ FloatingWindow* FloatingWindow::ImplFloatHitTest( Window* pReference, const Poin
do
{
- Rectangle devRect( OutputToAbsoluteScreenPixel( ScreenToOutputPixel(pWin->GetPosPixel()) ), pWin->GetSizePixel() ) ;
+ //Rectangle devRect( OutputToAbsoluteScreenPixel( ScreenToOutputPixel(pWin->GetPosPixel()) ), pWin->GetSizePixel() ) ;
+ Rectangle devRect( pWin->GetWindowExtentsRelative( NULL ) );
if ( devRect.IsInside( aAbsolute ) )
{
rHitTest = IMPL_FLOATWIN_HITTEST_WINDOW;