diff options
author | Cédric Bosdonnat <cedricbosdo@openoffice.org> | 2011-03-25 15:51:54 +0100 |
---|---|---|
committer | Cédric Bosdonnat <cedricbosdo@openoffice.org> | 2011-03-28 11:15:52 +0200 |
commit | 1d21a4249661b1b55cf8fbea67ad47ffb4f813fa (patch) | |
tree | f5ffda4ae0fd6fd5d4f5f6c5b967b57c678b8371 /sw/inc/fmtclds.hxx | |
parent | 969d60a477742d24afe370fae70db057d2db9341 (diff) |
Moved SvxBorder* into editeng namespace to avoid duplicate DOUBLE on windows
Diffstat (limited to 'sw/inc/fmtclds.hxx')
-rw-r--r-- | sw/inc/fmtclds.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/inc/fmtclds.hxx b/sw/inc/fmtclds.hxx index fe68a6d16aa2..c0cdd0c7279f 100644 --- a/sw/inc/fmtclds.hxx +++ b/sw/inc/fmtclds.hxx @@ -78,7 +78,7 @@ enum SwColLineAdj class SW_DLLPUBLIC SwFmtCol : public SfxPoolItem { - SvxBorderStyle eLineStyle; //style of the separator line + editeng::SvxBorderStyle eLineStyle; //style of the separator line sal_uLong nLineWidth; // Width of the separator line. Color aLineColor; // Color of the separator line. @@ -121,7 +121,7 @@ public: SwColumns &GetColumns() { return aColumns; } sal_uInt16 GetNumCols() const { return aColumns.Count(); } - SvxBorderStyle GetLineStyle() const { return eLineStyle;} + editeng::SvxBorderStyle GetLineStyle() const { return eLineStyle;} sal_uLong GetLineWidth() const { return nLineWidth;} const Color& GetLineColor() const { return aLineColor;} @@ -135,7 +135,7 @@ public: // Return smallest width if bMin is true. sal_uInt16 GetGutterWidth( sal_Bool bMin = sal_False ) const; - void SetLineStyle(SvxBorderStyle eStyle) { eLineStyle = eStyle;} + void SetLineStyle(editeng::SvxBorderStyle eStyle) { eLineStyle = eStyle;} void SetLineWidth(sal_uLong nLWidth) { nLineWidth = nLWidth;} void SetLineColor(const Color& rCol ) { aLineColor = rCol;} void SetLineHeight( sal_uInt8 nNew ) { nLineHeight = nNew; } |