TBox with border

how can I draw a TBox with border? I try:

TBox *box = new TBox(0.4, 0.4, 0.5, 0.5)
box->SetFillColor(2)
box->SetLineColor(5)
box->SetLineWidth(2.)
box->Draw()

but it is without border!

It was not possible to draw the border when a fill style was specified
unless the box was drawn twice (once with fill style, another without fill style).
I have changed this behaviour in the CVS version.
If you draw the box with option ā€œlā€ the box border will be also drawn
when a fill style is given.

Rene