aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWordPad.cs
diff options
context:
space:
mode:
authorJayXKanz666 <[email protected]>2017-07-13 16:46:24 +0200
committerJayXKanz666 <[email protected]>2017-07-13 16:46:24 +0200
commit264deb3774935da3faba95fef55a94227e3f2368 (patch)
tree2eac43f957e8a20c3c773119155bc328c9851244 /TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWordPad.cs
parentdd76075ce70c2ac31f01b2450c7f64009489dee9 (diff)
downloadhistacom2-264deb3774935da3faba95fef55a94227e3f2368.tar.gz
histacom2-264deb3774935da3faba95fef55a94227e3f2368.tar.bz2
histacom2-264deb3774935da3faba95fef55a94227e3f2368.zip
Fixed type names
-`String` replaced with `string` -`Boolean` replaced with `bool`
Diffstat (limited to 'TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWordPad.cs')
-rw-r--r--TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWordPad.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWordPad.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWordPad.cs
index bf0cb16..2453abc 100644
--- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWordPad.cs
+++ b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWordPad.cs
@@ -155,7 +155,7 @@ namespace TimeHACK.OS.Win95.Win95Apps
void SetSelectedTextFont(string font)
{
- // The next two lines convert a String to a Font
+ // The next two lines convert a string to a Font
var cvt = new FontConverter();
Font f = cvt.ConvertFromString(font) as Font;
@@ -164,7 +164,7 @@ namespace TimeHACK.OS.Win95.Win95Apps
void SetSelectedTextSize(string size)
{
- // The next few lines will ATTEMPT to convert a String to an Integer
+ // The next few lines will ATTEMPT to convert a string to an Integer
int SizeInt = Convert.ToInt32(size);
mainText.SelectionFont = new Font(mainText.SelectionFont.FontFamily, SizeInt, mainText.SelectionFont.Style);