aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main/SaveDialogs
diff options
context:
space:
mode:
authorlempamo <[email protected]>2017-07-13 12:09:22 -0500
committerlempamo <[email protected]>2017-07-13 12:09:22 -0500
commit80b07723bc8c5a320436a577f2d88ca71f6dc299 (patch)
tree1662f0f38e88c1ba53a64f594243f7e4e6a93028 /TimeHACK.Main/SaveDialogs
parenta48b40e45536ee5c58d4d6a23bde0a9fc2b8ae3d (diff)
parent22cca68c0de30099891c4cf275968e10b0494d9f (diff)
downloadhistacom2-80b07723bc8c5a320436a577f2d88ca71f6dc299.tar.gz
histacom2-80b07723bc8c5a320436a577f2d88ca71f6dc299.tar.bz2
histacom2-80b07723bc8c5a320436a577f2d88ca71f6dc299.zip
fix conflict in vs :D
Diffstat (limited to 'TimeHACK.Main/SaveDialogs')
-rw-r--r--TimeHACK.Main/SaveDialogs/LoadGameDialog.cs2
-rw-r--r--TimeHACK.Main/SaveDialogs/LoadGameProfileItem.cs6
-rw-r--r--TimeHACK.Main/SaveDialogs/NewGameDialog.cs2
-rw-r--r--TimeHACK.Main/SaveDialogs/SaveFileTroubleShooter.cs6
4 files changed, 8 insertions, 8 deletions
diff --git a/TimeHACK.Main/SaveDialogs/LoadGameDialog.cs b/TimeHACK.Main/SaveDialogs/LoadGameDialog.cs
index b31bc50..89e875e 100644
--- a/TimeHACK.Main/SaveDialogs/LoadGameDialog.cs
+++ b/TimeHACK.Main/SaveDialogs/LoadGameDialog.cs
@@ -14,7 +14,7 @@ namespace TimeHACK
{
public partial class LoadGameDialog : Form
{
- public Boolean successful = false;
+ public bool successful = false;
public LoadGameDialog()
{
InitializeComponent();
diff --git a/TimeHACK.Main/SaveDialogs/LoadGameProfileItem.cs b/TimeHACK.Main/SaveDialogs/LoadGameProfileItem.cs
index 5e1ccf4..10d1a25 100644
--- a/TimeHACK.Main/SaveDialogs/LoadGameProfileItem.cs
+++ b/TimeHACK.Main/SaveDialogs/LoadGameProfileItem.cs
@@ -14,9 +14,9 @@ namespace TimeHACK
{
public partial class LoadGameProfileItem : UserControl, IMessageFilter
{
- public Boolean OnceRemoveHeight = false;
- public Boolean OnceAddHeight = false;
- public Boolean RequestingNewName = false;
+ public bool OnceRemoveHeight = false;
+ public bool OnceAddHeight = false;
+ public bool RequestingNewName = false;
public LoadGameProfileItem()
{
InitializeComponent();
diff --git a/TimeHACK.Main/SaveDialogs/NewGameDialog.cs b/TimeHACK.Main/SaveDialogs/NewGameDialog.cs
index 0e6f346..e9af8cb 100644
--- a/TimeHACK.Main/SaveDialogs/NewGameDialog.cs
+++ b/TimeHACK.Main/SaveDialogs/NewGameDialog.cs
@@ -16,7 +16,7 @@ namespace TimeHACK
{
public partial class NewGameDialog : Form
{
- public Boolean Successful = false;
+ public bool Successful = false;
public NewGameDialog()
{
InitializeComponent();
diff --git a/TimeHACK.Main/SaveDialogs/SaveFileTroubleShooter.cs b/TimeHACK.Main/SaveDialogs/SaveFileTroubleShooter.cs
index 4ada932..bcd60d1 100644
--- a/TimeHACK.Main/SaveDialogs/SaveFileTroubleShooter.cs
+++ b/TimeHACK.Main/SaveDialogs/SaveFileTroubleShooter.cs
@@ -14,9 +14,9 @@ namespace TimeHACK.SaveDialogs
{
public partial class SaveFileTroubleShooter : Form
{
- public String log;
+ public string log;
Save savedata = new Save();
- String json;
+ string json;
public SaveFileTroubleShooter()
{
InitializeComponent();
@@ -32,7 +32,7 @@ namespace TimeHACK.SaveDialogs
BeginScan();
}
- void WriteToLog(String toWrite)
+ void WriteToLog(string toWrite)
{
log += toWrite + Environment.NewLine;
}