summaryrefslogtreecommitdiff
path: root/sc/source/filter/excel/xistyle.cxx
diff options
context:
space:
mode:
authorCédric Bosdonnat <cedricbosdo@openoffice.org>2011-03-25 15:51:46 +0100
committerCédric Bosdonnat <cedricbosdo@openoffice.org>2011-03-28 11:19:00 +0200
commit7d34d4b5d23d7c29a22c9e79322dea0dad36096a (patch)
tree8a00958458b29a11aedb73b144dec26de2486697 /sc/source/filter/excel/xistyle.cxx
parent4618dd39832253ae27d1f94534a9ae7928870129 (diff)
Moved SvxBorder* into editeng namespace to avoid duplicate DOUBLE on windows
Diffstat (limited to 'sc/source/filter/excel/xistyle.cxx')
-rw-r--r--sc/source/filter/excel/xistyle.cxx38
1 files changed, 19 insertions, 19 deletions
diff --git a/sc/source/filter/excel/xistyle.cxx b/sc/source/filter/excel/xistyle.cxx
index bac3fe6d6eb3..d4eb332b2fb0 100644
--- a/sc/source/filter/excel/xistyle.cxx
+++ b/sc/source/filter/excel/xistyle.cxx
@@ -908,26 +908,26 @@ namespace {
#define XLS_LINE_WIDTH_MEDIUM 18
#define XLS_LINE_WIDTH_THICK 24
-/** Converts the passed line style to a SvxBorderLine, or returns false, if style is "no line". */
-bool lclConvertBorderLine( SvxBorderLine& rLine, const XclImpPalette& rPalette, sal_uInt8 nXclLine, sal_uInt16 nXclColor )
+/** Converts the passed line style to a ::editeng::SvxBorderLine, or returns false, if style is "no line". */
+bool lclConvertBorderLine( ::editeng::SvxBorderLine& rLine, const XclImpPalette& rPalette, sal_uInt8 nXclLine, sal_uInt16 nXclColor )
{
static const sal_uInt16 ppnLineParam[][ 4 ] =
{
// outer width, type
- { 0, SOLID }, // 0 = none
- { XLS_LINE_WIDTH_THIN, SOLID }, // 1 = thin
- { XLS_LINE_WIDTH_MEDIUM, SOLID }, // 2 = medium
- { XLS_LINE_WIDTH_THIN, DASHED }, // 3 = dashed
- { XLS_LINE_WIDTH_THIN, DOTTED }, // 4 = dotted
- { XLS_LINE_WIDTH_THICK, SOLID }, // 5 = thick
- { XLS_LINE_WIDTH_THIN, DOUBLE }, // 6 = double
- { XLS_LINE_WIDTH_HAIR, SOLID }, // 7 = hair
- { XLS_LINE_WIDTH_MEDIUM, DASHED }, // 8 = med dash
- { XLS_LINE_WIDTH_THIN, SOLID }, // 9 = thin dashdot
- { XLS_LINE_WIDTH_MEDIUM, SOLID }, // A = med dashdot
- { XLS_LINE_WIDTH_THIN, SOLID }, // B = thin dashdotdot
- { XLS_LINE_WIDTH_MEDIUM, SOLID }, // C = med dashdotdot
- { XLS_LINE_WIDTH_MEDIUM, SOLID } // D = med slant dashdot
+ { 0, ::editeng::SOLID }, // 0 = none
+ { XLS_LINE_WIDTH_THIN, ::editeng::SOLID }, // 1 = thin
+ { XLS_LINE_WIDTH_MEDIUM, ::editeng::SOLID }, // 2 = medium
+ { XLS_LINE_WIDTH_THIN, ::editeng::DASHED }, // 3 = dashed
+ { XLS_LINE_WIDTH_THIN, ::editeng::DOTTED }, // 4 = dotted
+ { XLS_LINE_WIDTH_THICK, ::editeng::SOLID }, // 5 = thick
+ { XLS_LINE_WIDTH_THIN, ::editeng::DOUBLE }, // 6 = double
+ { XLS_LINE_WIDTH_HAIR, ::editeng::SOLID }, // 7 = hair
+ { XLS_LINE_WIDTH_MEDIUM, ::editeng::DASHED }, // 8 = med dash
+ { XLS_LINE_WIDTH_THIN, ::editeng::SOLID }, // 9 = thin dashdot
+ { XLS_LINE_WIDTH_MEDIUM, ::editeng::SOLID }, // A = med dashdot
+ { XLS_LINE_WIDTH_THIN, ::editeng::SOLID }, // B = thin dashdotdot
+ { XLS_LINE_WIDTH_MEDIUM, ::editeng::SOLID }, // C = med dashdotdot
+ { XLS_LINE_WIDTH_MEDIUM, ::editeng::SOLID } // D = med slant dashdot
};
if( nXclLine == EXC_LINE_NONE )
@@ -937,7 +937,7 @@ bool lclConvertBorderLine( SvxBorderLine& rLine, const XclImpPalette& rPalette,
rLine.SetColor( rPalette.GetColor( nXclColor ) );
rLine.SetWidth( ppnLineParam[ nXclLine ][ 0 ] );
- rLine.SetStyle( (SvxBorderStyle)ppnLineParam[ nXclLine ][ 1 ] );
+ rLine.SetStyle( (::editeng::SvxBorderStyle)ppnLineParam[ nXclLine ][ 1 ] );
return true;
}
@@ -948,7 +948,7 @@ void XclImpCellBorder::FillToItemSet( SfxItemSet& rItemSet, const XclImpPalette&
if( mbLeftUsed || mbRightUsed || mbTopUsed || mbBottomUsed )
{
SvxBoxItem aBoxItem( ATTR_BORDER );
- SvxBorderLine aLine;
+ ::editeng::SvxBorderLine aLine;
if( mbLeftUsed && lclConvertBorderLine( aLine, rPalette, mnLeftLine, mnLeftColor ) )
aBoxItem.SetLine( &aLine, BOX_LINE_LEFT );
if( mbRightUsed && lclConvertBorderLine( aLine, rPalette, mnRightLine, mnRightColor ) )
@@ -963,7 +963,7 @@ void XclImpCellBorder::FillToItemSet( SfxItemSet& rItemSet, const XclImpPalette&
{
SvxLineItem aTLBRItem( ATTR_BORDER_TLBR );
SvxLineItem aBLTRItem( ATTR_BORDER_BLTR );
- SvxBorderLine aLine;
+ ::editeng::SvxBorderLine aLine;
if( lclConvertBorderLine( aLine, rPalette, mnDiagLine, mnDiagColor ) )
{
if( mbDiagTLtoBR )