diff options
author | Robert Roth <robert.roth.off@gmail.com> | 2010-11-01 20:15:09 +0200 |
---|---|---|
committer | Michael Meeks <michael.meeks@novell.com> | 2010-11-01 21:05:57 +0000 |
commit | d666a7e2af500758192cc848358f36825f2748dd (patch) | |
tree | e15cac05781f51a76b4592febce21e622bb8bdf9 /sw/inc/fmtclds.hxx | |
parent | db8ad987be169af5b394cc0c8bbfed8745b3a330 (diff) |
Commented lines, bogus comments removed.
Diffstat (limited to 'sw/inc/fmtclds.hxx')
-rw-r--r-- | sw/inc/fmtclds.hxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sw/inc/fmtclds.hxx b/sw/inc/fmtclds.hxx index 45acfcfc0597..7c9115794f0f 100644 --- a/sw/inc/fmtclds.hxx +++ b/sw/inc/fmtclds.hxx @@ -78,7 +78,6 @@ enum SwColLineAdj class SW_DLLPUBLIC SwFmtCol : public SfxPoolItem { -// Pen aPen; //Pen fuer die Linine zwischen den Spalten ULONG nLineWidth; //width of the separator line Color aLineColor; //color of the separator line @@ -122,7 +121,7 @@ public: const SwColumns &GetColumns() const { return aColumns; } SwColumns &GetColumns() { return aColumns; } USHORT GetNumCols() const { return aColumns.Count(); } -// const Pen& GetLinePen() const { return aPen; } + ULONG GetLineWidth() const { return nLineWidth;} const Color& GetLineColor() const { return aLineColor;} @@ -136,7 +135,6 @@ public: //Return die kleinste Breite wenn bMin True ist. USHORT GetGutterWidth( BOOL bMin = FALSE ) const; -// void SetLinePen( const Pen& rNew ) { aPen = rNew; } void SetLineWidth(ULONG nLWidth) { nLineWidth = nLWidth;} void SetLineColor(const Color& rCol ) { aLineColor = rCol;} void SetLineHeight( BYTE nNew ) { nLineHeight = nNew; } |