mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[DatFile, Reports] Rename to avoid redundancy
This commit is contained in:
@@ -72,7 +72,7 @@ namespace SabreTools.Library.Reports
|
||||
/// <summary>
|
||||
/// Write out the header to the stream, if any exists
|
||||
/// </summary>
|
||||
public override void WriteStatsHeader()
|
||||
public override void WriteHeader()
|
||||
{
|
||||
_writer.Write(@"<!DOCTYPE html>
|
||||
<html>
|
||||
@@ -97,13 +97,13 @@ namespace SabreTools.Library.Reports
|
||||
_writer.Flush();
|
||||
|
||||
// Now write the mid header for those who need it
|
||||
WriteStatsMidHeader();
|
||||
WriteMidHeader();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Write out the mid-header to the stream, if any exists
|
||||
/// </summary>
|
||||
public override void WriteStatsMidHeader()
|
||||
public override void WriteMidHeader()
|
||||
{
|
||||
_writer.Write(@" <tr bgcolor=""gray""><th>File Name</th><th align=""right"">Total Size</th><th align=""right"">Games</th><th align=""right"">Roms</th>"
|
||||
+ @"<th align=""right"">Disks</th><th align=""right""># with CRC</th><th align=""right""># with MD5</th><th align=""right""># with SHA-1</th><th align=""right""># with SHA-256</th>"
|
||||
@@ -114,7 +114,7 @@ namespace SabreTools.Library.Reports
|
||||
/// <summary>
|
||||
/// Write out the separator to the stream, if any exists
|
||||
/// </summary>
|
||||
public override void WriteStatsMidSeparator()
|
||||
public override void WriteMidSeparator()
|
||||
{
|
||||
_writer.Write("<tr><td colspan=\""
|
||||
+ (_baddumpCol && _nodumpCol
|
||||
@@ -130,7 +130,7 @@ namespace SabreTools.Library.Reports
|
||||
/// <summary>
|
||||
/// Write out the footer-separator to the stream, if any exists
|
||||
/// </summary>
|
||||
public override void WriteStatsFooterSeparator()
|
||||
public override void WriteFooterSeparator()
|
||||
{
|
||||
_writer.Write("<tr border=\"0\"><td colspan=\""
|
||||
+ (_baddumpCol && _nodumpCol
|
||||
@@ -146,7 +146,7 @@ namespace SabreTools.Library.Reports
|
||||
/// <summary>
|
||||
/// Write out the footer to the stream, if any exists
|
||||
/// </summary>
|
||||
public override void WriteStatsFooter()
|
||||
public override void WriteFooter()
|
||||
{
|
||||
_writer.Write(@" </table>
|
||||
</body>
|
||||
|
||||
Reference in New Issue
Block a user