summaryrefslogtreecommitdiff
path: root/svx/source/dialog/rulritem.cxx
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2005-03-01 18:07:57 +0000
committerKurt Zenker <kz@openoffice.org>2005-03-01 18:07:57 +0000
commit9a7aba4ae257e34e54a63099c6b15e5e705a2de6 (patch)
tree15deff234956671ca0ac37072ac9e7dfd166a3b0 /svx/source/dialog/rulritem.cxx
parent0f39a48f85476f9d21d8257486ee218bc64d15dd (diff)
INTEGRATION: CWS removedrafts (1.6.672); FILE MERGED
2005/02/17 14:08:01 cd 1.6.672.1: #i42557# Move UNOIDL types from drafts to com
Diffstat (limited to 'svx/source/dialog/rulritem.cxx')
-rw-r--r--svx/source/dialog/rulritem.cxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/svx/source/dialog/rulritem.cxx b/svx/source/dialog/rulritem.cxx
index 6402793e3205..1dedd6d08802 100644
--- a/svx/source/dialog/rulritem.cxx
+++ b/svx/source/dialog/rulritem.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: rulritem.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: kz $ $Date: 2004-02-25 16:05:59 $
+ * last change: $Author: kz $ $Date: 2005-03-01 19:07:57 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -70,11 +70,11 @@
#ifndef _COM_SUN_STAR_AWT_RECTANGLE_HPP_
#include <com/sun/star/awt/Rectangle.hpp>
#endif
-#ifndef _DRAFTS_COM_SUN_STAR_FRAME_STATUS_LEFTRIGHTMARGIN_HPP_
-#include <drafts/com/sun/star/frame/status/LeftRightMargin.hpp>
+#ifndef _COM_SUN_STAR_FRAME_STATUS_LEFTRIGHTMARGIN_HPP_
+#include <com/sun/star/frame/status/LeftRightMargin.hpp>
#endif
-#ifndef _DRAFTS_COM_SUN_STAR_FRAME_STATUS_UPPERLOWERMARGIN_HPP_
-#include <drafts/com/sun/star/frame/status/UpperLowerMargin.hpp>
+#ifndef _COM_SUN_STAR_FRAME_STATUS_UPPERLOWERMARGIN_HPP_
+#include <com/sun/star/frame/status/UpperLowerMargin.hpp>
#endif
//------------------------------------------------------------------------
@@ -115,7 +115,7 @@ sal_Bool SvxLongLRSpaceItem::QueryValue( ::com::sun::star::uno::Any& rVal, BYTE
{
case 0:
{
- ::drafts::com::sun::star::frame::status::LeftRightMargin aLeftRightMargin;
+ ::com::sun::star::frame::status::LeftRightMargin aLeftRightMargin;
aLeftRightMargin.Left = bConvert ? TWIP_TO_MM100( lLeft ) : lLeft;
aLeftRightMargin.Right = bConvert ? TWIP_TO_MM100( lRight ) : lRight;
rVal <<= aLeftRightMargin;
@@ -143,7 +143,7 @@ sal_Bool SvxLongLRSpaceItem::PutValue( const ::com::sun::star::uno::Any& rVal, B
sal_Int32 nVal;
if ( nMemberId == 0 )
{
- drafts::com::sun::star::frame::status::LeftRightMargin aLeftRightMargin;
+ ::com::sun::star::frame::status::LeftRightMargin aLeftRightMargin;
if ( rVal >>= aLeftRightMargin )
{
lLeft = bConvert ? MM100_TO_TWIP( aLeftRightMargin.Left ) : aLeftRightMargin.Left;
@@ -240,7 +240,7 @@ sal_Bool SvxLongULSpaceItem::QueryValue( ::com::sun::star::uno::Any& rVal, BYTE
{
case 0:
{
- drafts::com::sun::star::frame::status::UpperLowerMargin aUpperLowerMargin;
+ ::com::sun::star::frame::status::UpperLowerMargin aUpperLowerMargin;
aUpperLowerMargin.Upper = bConvert ? TWIP_TO_MM100( lLeft ) : lLeft;
aUpperLowerMargin.Lower = bConvert ? TWIP_TO_MM100( lRight ) : lRight;
rVal <<= aUpperLowerMargin;
@@ -268,7 +268,7 @@ sal_Bool SvxLongULSpaceItem::PutValue( const ::com::sun::star::uno::Any& rVal, B
sal_Int32 nVal;
if ( nMemberId == 0 )
{
- drafts::com::sun::star::frame::status::UpperLowerMargin aUpperLowerMargin;
+ ::com::sun::star::frame::status::UpperLowerMargin aUpperLowerMargin;
if ( rVal >>= aUpperLowerMargin )
{
lLeft = bConvert ? MM100_TO_TWIP( aUpperLowerMargin.Upper ) : aUpperLowerMargin.Upper;