Replaces types with built-in types.
This commit is contained in:
parent
fee83ce560
commit
22ab83ea9e
98 changed files with 248 additions and 248 deletions
|
|
@ -488,7 +488,7 @@ namespace Server.Misc
|
|||
{
|
||||
double perc = option.Votes / (double)totalVotes;
|
||||
|
||||
text = String.Format( "[{1}: {2}%] {0}", text, option.Votes, (int)(perc*100) );
|
||||
text = string.Format( "[{1}: {2}%] {0}", text, option.Votes, (int)(perc*100) );
|
||||
}
|
||||
|
||||
int optHeight = option.ComputeHeight();
|
||||
|
|
@ -600,7 +600,7 @@ namespace Server.Misc
|
|||
}
|
||||
else if ( m.Groups[2].Success )
|
||||
{
|
||||
return String.Format( "<a href=\"{0}\">{0}</a>", m.Groups[2].Value );
|
||||
return string.Format( "<a href=\"{0}\">{0}</a>", m.Groups[2].Value );
|
||||
}
|
||||
|
||||
return m.Value;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue