diff options
| author | Jason <[email protected]> | 2017-07-13 16:52:07 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-07-13 16:52:07 +0200 |
| commit | 22cca68c0de30099891c4cf275968e10b0494d9f (patch) | |
| tree | 2eac43f957e8a20c3c773119155bc328c9851244 /TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWordPad.cs | |
| parent | 3c69afe48d59f47fe5af8d9522ba1b52ce5259fb (diff) | |
| parent | 0895af6a5fb69be83ed0424701fedf4e960c0d7d (diff) | |
| download | histacom2-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/OS/Win95/Win95Apps/WinClassicWordPad.cs')
| -rw-r--r-- | TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWordPad.cs | 4 |
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); |
