diff options
| author | lempamo <[email protected]> | 2017-07-10 23:02:08 -0400 |
|---|---|---|
| committer | lempamo <[email protected]> | 2017-07-10 23:02:08 -0400 |
| commit | 4a5a6d38a4cfd35e384f30410c7b94e911a1b0c1 (patch) | |
| tree | cfa9dfa7c04aab4906f31dd9a85e4549adbd391e /TimeHACK.Main/OS/Win95/Win95Apps/WinClassicNotepad.cs | |
| parent | fa899ea6ad1e54b42c18441d383e47a4b4820ef1 (diff) | |
| download | histacom2-4a5a6d38a4cfd35e384f30410c7b94e911a1b0c1.tar.gz histacom2-4a5a6d38a4cfd35e384f30410c7b94e911a1b0c1.tar.bz2 histacom2-4a5a6d38a4cfd35e384f30410c7b94e911a1b0c1.zip | |
fix up notepad + wordpad
Diffstat (limited to 'TimeHACK.Main/OS/Win95/Win95Apps/WinClassicNotepad.cs')
| -rw-r--r-- | TimeHACK.Main/OS/Win95/Win95Apps/WinClassicNotepad.cs | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicNotepad.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicNotepad.cs index f1920ed..db49c53 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicNotepad.cs +++ b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicNotepad.cs @@ -20,7 +20,7 @@ namespace TimeHACK.OS.Win95.Win95Apps InitializeComponent(); foreach (ToolStripMenuItem item in menuStrip1.Items) { - item.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((0))); + item.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular); item.BackColor = Color.Silver; item.BackgroundImage = Properties.Resources.sliversilver; item.BackgroundImageLayout = ImageLayout.Center; @@ -91,8 +91,7 @@ namespace TimeHACK.OS.Win95.Win95Apps try { ActivateSaveFileDialog(".txt"); - String selectedPath; - selectedPath = Program.OpenFileExplorerAsDialogAndReturnGivenPath(); + string selectedPath = Program.OpenFileExplorerAsDialogAndReturnGivenPath(); MessageBox.Show(selectedPath); if (selectedPath != "") @@ -110,8 +109,7 @@ namespace TimeHACK.OS.Win95.Win95Apps try { ActivateSaveFileDialog(".txt"); - String selectedPath; - selectedPath = Program.OpenFileExplorerAsDialogAndReturnGivenPath(); + string selectedPath = Program.OpenFileExplorerAsDialogAndReturnGivenPath(); MessageBox.Show(selectedPath); if (selectedPath != "") |
