summaryrefslogtreecommitdiff
path: root/sw/source/ui/frmdlg
diff options
context:
space:
mode:
authorOliver Specht <os@openoffice.org>2002-09-16 07:38:48 +0000
committerOliver Specht <os@openoffice.org>2002-09-16 07:38:48 +0000
commitc03aaf68c8e885fe4dff0eab5050ac50f0595995 (patch)
tree64ca19e48afff7c0f5e1684cde087bcea8f7ba62 /sw/source/ui/frmdlg
parentd694e1c510ff8ed5c44db27b43d996a2d45b193f (diff)
#103302# missing member initialization added
Diffstat (limited to 'sw/source/ui/frmdlg')
-rw-r--r--sw/source/ui/frmdlg/frmmgr.cxx13
1 files changed, 9 insertions, 4 deletions
diff --git a/sw/source/ui/frmdlg/frmmgr.cxx b/sw/source/ui/frmdlg/frmmgr.cxx
index 98625b5bef2b..2169fecd4ec5 100644
--- a/sw/source/ui/frmdlg/frmmgr.cxx
+++ b/sw/source/ui/frmdlg/frmmgr.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: frmmgr.cxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: os $ $Date: 2002-09-13 13:51:23 $
+ * last change: $Author: os $ $Date: 2002-09-16 08:38:48 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -153,9 +153,14 @@ SwFlyFrmAttrMgr::SwFlyFrmAttrMgr( BOOL bNew, SwWrtShell* pSh, const SfxItemSet &
bAbsPos( FALSE ),
bNewFrm( bNew ),
aSet( rSet ),
- pOwnSh( pSh )
-
+ pOwnSh( pSh ),
+ bIsInVertical(FALSE)
{
+ if(!bNew)
+ {
+ BOOL bRightToLeft;
+ bIsInVertical = pSh->IsFrmInVertical(TRUE, bRightToLeft);
+ }
}