summaryrefslogtreecommitdiff
path: root/sw/source/core/view/vdraw.cxx
diff options
context:
space:
mode:
authorPhilipp Riemer <ruderphilipp@gmail.com>2013-05-05 19:58:10 +0200
committerPhilipp Riemer <ruderphilipp@gmail.com>2013-05-05 20:33:16 +0200
commit688f72e3a2c3ef923389bbd21f6aea3afe1114db (patch)
tree1fd928b93c80e5a3ce3aa2d282b4be8e5e5757b8 /sw/source/core/view/vdraw.cxx
parent68334b7c3f2c0654d28661d56e492922deef55cd (diff)
fdo#39468: Translate German comments in sw/source/core/view
Change-Id: Icc9249ec66ea10ae0ceea6b5e611cf774474c7c2
Diffstat (limited to 'sw/source/core/view/vdraw.cxx')
-rw-r--r--sw/source/core/view/vdraw.cxx12
1 files changed, 5 insertions, 7 deletions
diff --git a/sw/source/core/view/vdraw.cxx b/sw/source/core/view/vdraw.cxx
index 7b5009bdfc48..58a31032ba24 100644
--- a/sw/source/core/view/vdraw.cxx
+++ b/sw/source/core/view/vdraw.cxx
@@ -156,8 +156,7 @@ void SwViewImp::PaintLayer( const SdrLayerID _nLayerID,
}
}
-
-#define WIEDUWILLST 400
+#define FUZZY_EDGE 400
sal_Bool SwViewImp::IsDragPossible( const Point &rPoint )
{
@@ -181,14 +180,13 @@ sal_Bool SwViewImp::IsDragPossible( const Point &rPoint )
else
aRect = GetShell()->GetLayout()->Frm();
- aRect.Top( aRect.Top() - WIEDUWILLST );
- aRect.Bottom( aRect.Bottom() + WIEDUWILLST );
- aRect.Left( aRect.Left() - WIEDUWILLST );
- aRect.Right( aRect.Right() + WIEDUWILLST );
+ aRect.Top( aRect.Top() - FUZZY_EDGE );
+ aRect.Bottom( aRect.Bottom() + FUZZY_EDGE );
+ aRect.Left( aRect.Left() - FUZZY_EDGE );
+ aRect.Right( aRect.Right() + FUZZY_EDGE );
return aRect.IsInside( rPoint );
}
-
void SwViewImp::NotifySizeChg( const Size &rNewSz )
{
if ( !HasDrawView() )