aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main/SaveDialogs/SaveFileTroubleShooter.cs
diff options
context:
space:
mode:
authorJason <[email protected]>2017-07-13 16:52:07 +0200
committerGitHub <[email protected]>2017-07-13 16:52:07 +0200
commit22cca68c0de30099891c4cf275968e10b0494d9f (patch)
tree2eac43f957e8a20c3c773119155bc328c9851244 /TimeHACK.Main/SaveDialogs/SaveFileTroubleShooter.cs
parent3c69afe48d59f47fe5af8d9522ba1b52ce5259fb (diff)
parent0895af6a5fb69be83ed0424701fedf4e960c0d7d (diff)
downloadhistacom2-22cca68c0de30099891c4cf275968e10b0494d9f.tar.gz
histacom2-22cca68c0de30099891c4cf275968e10b0494d9f.tar.bz2
histacom2-22cca68c0de30099891c4cf275968e10b0494d9f.zip
Merge pull request #124 from jayxkanz666/master
Fixed type names
Diffstat (limited to 'TimeHACK.Main/SaveDialogs/SaveFileTroubleShooter.cs')
-rw-r--r--TimeHACK.Main/SaveDialogs/SaveFileTroubleShooter.cs6
1 files changed, 3 insertions, 3 deletions
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;
}