Skip to content

Commit

Permalink
2004-06-05 Gonzalo Paniagua Javier <[email protected]>
Browse files Browse the repository at this point in the history
	* Calendar.cs: set the title class attribute if we have it. Fixes bug
	53671.

svn path=/trunk/mcs/; revision=28857
  • Loading branch information
gonzalop committed Jun 5, 2004
1 parent b01c679 commit e6c1f1a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
4 changes: 4 additions & 0 deletions mcs/class/System.Web/System.Web.UI.WebControls/Calendar.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1155,6 +1155,10 @@ private void ApplyTitleStyle(Table table, TableCell cell, TableItemStyle style)
{
table.ForeColor = ForeColor;
}

if (style.CssClass != "") {
cell.CssClass = style.CssClass;
}

table.Font.CopyFrom(style.Font);
table.Font.MergeWith(Font);
Expand Down
5 changes: 5 additions & 0 deletions mcs/class/System.Web/System.Web.UI.WebControls/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2004-06-05 Gonzalo Paniagua Javier <[email protected]>

* Calendar.cs: set the title class attribute if we have it. Fixes bug
53671.

2004-06-04 Gonzalo Paniagua Javier <[email protected]>

* Style.cs: added SetBit.
Expand Down

0 comments on commit e6c1f1a

Please sign in to comment.