summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorOcke Janssen <oj@openoffice.org>2001-02-09 11:55:27 +0000
committerOcke Janssen <oj@openoffice.org>2001-02-09 11:55:27 +0000
commit7b0ffa5a555f5c44fc04b9f0e74738060e8aa8c8 (patch)
tree6a7422feef4da78eceea871681d5eeaad3184f53 /svtools
parent99a7408945981339df08465f8867aa5f8b045b37 (diff)
line- and fill color were mixed
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/brwbox/brwbox2.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/svtools/source/brwbox/brwbox2.cxx b/svtools/source/brwbox/brwbox2.cxx
index 1f374b988aed..00f96fcde814 100644
--- a/svtools/source/brwbox/brwbox2.cxx
+++ b/svtools/source/brwbox/brwbox2.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: brwbox2.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: hjs $ $Date: 2000-11-03 18:24:29 $
+ * last change: $Author: oj $ $Date: 2001-02-09 12:55:27 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -652,8 +652,8 @@ void BrowseBox::Paint( const Rectangle& rRect )
DrawRect( Rectangle(
Point( nX, 0 ),
Point( rRect.Right(), GetTitleHeight() - 2 ) ) );
- SetFillColor( aOldLineColor );
- SetLineColor( aOldFillColor );
+ SetFillColor( aOldFillColor); // aOldLineColor ); oj 09.02.00 seems to be a copy&paste bug
+ SetLineColor( aOldLineColor); // aOldFillColor );
}
}
}