summaryrefslogtreecommitdiff
path: root/sw/source/core/text/possiz.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/core/text/possiz.hxx')
-rw-r--r--sw/source/core/text/possiz.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/source/core/text/possiz.hxx b/sw/source/core/text/possiz.hxx
index c97d122da2ff..28b20b4bab81 100644
--- a/sw/source/core/text/possiz.hxx
+++ b/sw/source/core/text/possiz.hxx
@@ -2,7 +2,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -56,26 +56,26 @@ public:
inline SwPosSize &SwPosSize::operator=(const SwPosSize &rSize )
{
- nWidth = rSize.Width();
+ nWidth = rSize.Width();
nHeight = rSize.Height();
return *this;
}
inline void SwPosSize::SvLSize( const Size &rSize )
{
- nWidth = KSHORT(rSize.Width());
+ nWidth = KSHORT(rSize.Width());
nHeight = KSHORT(rSize.Height());
}
inline void SwPosSize::SvXSize( const Size &rSize )
{
- nHeight = KSHORT(rSize.Width());
+ nHeight = KSHORT(rSize.Width());
nWidth = KSHORT(rSize.Height());
}
inline SwPosSize &SwPosSize::operator=( const Size &rSize )
{
- nWidth = KSHORT(rSize.Width());
+ nWidth = KSHORT(rSize.Width());
nHeight = KSHORT(rSize.Height());
return *this;
}