Fix classes to match up with recent file renames

This commit is contained in:
Jim Westfall
2014-10-23 21:59:09 -07:00
parent 9a6bc0a165
commit f436495aa2
9 changed files with 34 additions and 34 deletions

View File

@@ -1,6 +1,6 @@
namespace ROMVault2 namespace ROMVault2
{ {
partial class frmHelpAbout partial class FrmHelpAbout
{ {
/// <summary> /// <summary>
/// Required designer variable. /// Required designer variable.
@@ -67,7 +67,7 @@
this.label2.Text = "support@romvault.com"; this.label2.Text = "support@romvault.com";
this.label2.Click += new System.EventHandler(this.label2_Click); this.label2.Click += new System.EventHandler(this.label2_Click);
// //
// frmHelpAbout // FrmHelpAbout
// //
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
@@ -79,10 +79,10 @@
this.Controls.Add(this.lblVersion); this.Controls.Add(this.lblVersion);
this.DoubleBuffered = true; this.DoubleBuffered = true;
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Name = "frmHelpAbout"; this.Name = "FrmHelpAbout";
this.ShowInTaskbar = false; this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "frmHelpAbout"; this.Text = "FrmHelpAbout";
this.ResumeLayout(false); this.ResumeLayout(false);
this.PerformLayout(); this.PerformLayout();

View File

@@ -9,9 +9,9 @@ using System.Windows.Forms;
namespace ROMVault2 namespace ROMVault2
{ {
public partial class frmHelpAbout : Form public partial class FrmHelpAbout : Form
{ {
public frmHelpAbout() public FrmHelpAbout()
{ {
InitializeComponent(); InitializeComponent();

View File

@@ -1,6 +1,6 @@
namespace ROMVault2 namespace ROMVault2
{ {
partial class frmKey partial class FrmKey
{ {
/// <summary> /// <summary>
/// Required designer variable. /// Required designer variable.
@@ -28,10 +28,10 @@
/// </summary> /// </summary>
private void InitializeComponent() private void InitializeComponent()
{ {
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmKey)); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmKey));
this.SuspendLayout(); this.SuspendLayout();
// //
// frmKey // FrmKey
// //
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
@@ -39,10 +39,10 @@
this.ClientSize = new System.Drawing.Size(600, 532); this.ClientSize = new System.Drawing.Size(600, 532);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "frmKey"; this.Name = "FrmKey";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Color Key to ROM Status"; this.Text = "Color Key to ROM Status";
this.Load += new System.EventHandler(this.frmKey_Load); this.Load += new System.EventHandler(this.FrmKey_Load);
this.ResumeLayout(false); this.ResumeLayout(false);
} }

View File

@@ -11,14 +11,14 @@ using System.Windows.Forms;
namespace ROMVault2 namespace ROMVault2
{ {
public partial class frmKey : Form public partial class FrmKey : Form
{ {
public frmKey() public FrmKey()
{ {
InitializeComponent(); InitializeComponent();
} }
private void frmKey_Load(object sender, EventArgs e) private void FrmKey_Load(object sender, EventArgs e)
{ {
List<RepStatus> displayList= new List<RepStatus> List<RepStatus> displayList= new List<RepStatus>
{ {

View File

@@ -1,4 +1,4 @@
/****************************************************** /******************************************************
* ROMVault2 is written by Gordon J. * * ROMVault2 is written by Gordon J. *
* Contact gordon@romvault.com * * Contact gordon@romvault.com *
* Copyright 2010 * * Copyright 2010 *
@@ -40,7 +40,7 @@ namespace ROMVault2
public static int[] GameGridColumnXPositions; public static int[] GameGridColumnXPositions;
private frmKey _fk; private FrmKey _fk;
private Single _scaleFactorX = 1; private Single _scaleFactorX = 1;
private Single _scaleFactorY = 1; private Single _scaleFactorY = 1;
@@ -1201,7 +1201,7 @@ namespace ROMVault2
{ {
if (_fk == null || _fk.IsDisposed) if (_fk == null || _fk.IsDisposed)
_fk = new frmKey(); _fk = new FrmKey();
_fk.Show(); _fk.Show();
} }
@@ -1215,7 +1215,7 @@ namespace ROMVault2
private void BtnReportClick(object sender, EventArgs e) private void BtnReportClick(object sender, EventArgs e)
{ {
Report.MakeFixFiles(); Report.MakeFixFiles();
//frmReport newreporter = new frmReport(); //FrmReport newreporter = new FrmReport();
//newreporter.ShowDialog(); //newreporter.ShowDialog();
//newreporter.Dispose(); //newreporter.Dispose();
} }
@@ -1236,7 +1236,7 @@ namespace ROMVault2
private void AboutRomVaultToolStripMenuItemClick(object sender, EventArgs e) private void AboutRomVaultToolStripMenuItemClick(object sender, EventArgs e)
{ {
frmHelpAbout fha = new frmHelpAbout(); FrmHelpAbout fha = new FrmHelpAbout();
fha.ShowDialog(this); fha.ShowDialog(this);
fha.Dispose(); fha.Dispose();
} }

View File

@@ -1,6 +1,6 @@
namespace ROMVault2 namespace ROMVault2
{ {
partial class frmShowError partial class FrmShowError
{ {
/// <summary> /// <summary>
/// Required designer variable. /// Required designer variable.
@@ -28,7 +28,7 @@
/// </summary> /// </summary>
private void InitializeComponent() private void InitializeComponent()
{ {
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmShowError)); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmShowError));
this.textBox1 = new System.Windows.Forms.TextBox(); this.textBox1 = new System.Windows.Forms.TextBox();
this.button1 = new System.Windows.Forms.Button(); this.button1 = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label(); this.label1 = new System.Windows.Forms.Label();
@@ -62,7 +62,7 @@
this.label1.TabIndex = 2; this.label1.TabIndex = 2;
this.label1.Text = "Sending Error Message to RomVault.Com"; this.label1.Text = "Sending Error Message to RomVault.Com";
// //
// frmShowError // FrmShowError
// //
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
@@ -72,7 +72,7 @@
this.Controls.Add(this.textBox1); this.Controls.Add(this.textBox1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "frmShowError"; this.Name = "FrmShowError";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "RomVault Error report"; this.Text = "RomVault Error report";
this.ResumeLayout(false); this.ResumeLayout(false);

View File

@@ -9,9 +9,9 @@ using System.Windows.Forms;
namespace ROMVault2 namespace ROMVault2
{ {
public partial class frmShowError : Form public partial class FrmShowError : Form
{ {
public frmShowError() public FrmShowError()
{ {
InitializeComponent(); InitializeComponent();
} }

View File

@@ -100,7 +100,7 @@
this.Name = "FrmSplashScreen"; this.Name = "FrmSplashScreen";
this.ShowInTaskbar = false; this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "frmSplashScreen"; this.Text = "FrmSplashScreen";
this.Shown += new System.EventHandler(this.FrmSplashScreenShown); this.Shown += new System.EventHandler(this.FrmSplashScreenShown);
this.ResumeLayout(false); this.ResumeLayout(false);
this.PerformLayout(); this.PerformLayout();

View File

@@ -34,7 +34,7 @@ namespace ROMVault2
SendErrorMessage(message); SendErrorMessage(message);
frmShowError fshow = new frmShowError(); FrmShowError fshow = new FrmShowError();
fshow.settype(message); fshow.settype(message);
fshow.ShowDialog(); fshow.ShowDialog();
@@ -60,7 +60,7 @@ namespace ROMVault2
SendErrorMessage(message); SendErrorMessage(message);
frmShowError fshow = new frmShowError(); FrmShowError fshow = new FrmShowError();
fshow.settype(message); fshow.settype(message);
fshow.ShowDialog(); fshow.ShowDialog();
@@ -82,7 +82,7 @@ namespace ROMVault2
SendErrorMessage(message); SendErrorMessage(message);
frmShowError fshow = new frmShowError(); FrmShowError fshow = new FrmShowError();
fshow.settype(message); fshow.settype(message);
fshow.ShowDialog(); fshow.ShowDialog();