diff options
| author | lempamo <[email protected]> | 2017-03-31 18:31:16 -0400 |
|---|---|---|
| committer | lempamo <[email protected]> | 2017-03-31 18:31:16 -0400 |
| commit | 586f0f740898cd7eb7cd59048ba8d59410b2f766 (patch) | |
| tree | 1056452ed84ae193ed9e7e9b7c47582feecf4cdc /TimeHACK.Main/OS/Win95/Win95.cs | |
| parent | 5ec8f66c1ad558a165cf621b405bee7cba48be0b (diff) | |
| download | histacom2-586f0f740898cd7eb7cd59048ba8d59410b2f766.tar.gz histacom2-586f0f740898cd7eb7cd59048ba8d59410b2f766.tar.bz2 histacom2-586f0f740898cd7eb7cd59048ba8d59410b2f766.zip | |
fixed tons of things
Diffstat (limited to 'TimeHACK.Main/OS/Win95/Win95.cs')
| -rw-r--r-- | TimeHACK.Main/OS/Win95/Win95.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/TimeHACK.Main/OS/Win95/Win95.cs b/TimeHACK.Main/OS/Win95/Win95.cs index 0c6e3c7..f0e9174 100644 --- a/TimeHACK.Main/OS/Win95/Win95.cs +++ b/TimeHACK.Main/OS/Win95/Win95.cs @@ -3,10 +3,10 @@ using System.Drawing; using System.IO; using System.Media; using System.Windows.Forms; -using TimeHACK.Main; +using TimeHACK.Engine; using TimeHACK.WinClassicForms; -namespace TimeHACK +namespace TimeHACK.OS.Win95 { public partial class Windows95 : Form { @@ -148,7 +148,7 @@ namespace TimeHACK private void InternetExplorerToolStripMenuItem_Click(object sender, EventArgs e) { WinClassicIE4 ie = new WinClassicIE4(); - Main.Template.WinClassic app = wm.startWin95(ie, "Internet Explorer 4", null, true, true); + Engine.Template.WinClassic app = wm.startWin95(ie, "Internet Explorer 4", null, true, true); app.BringToFront(); startmenu.Hide(); } @@ -166,14 +166,14 @@ namespace TimeHACK if (objListViewItem.Text == "Internet Explorer") { WinClassicIE4 ie = new WinClassicIE4(); - Main.Template.WinClassic app = wm.startWin95(ie, "Internet Explorer 4", null, true, true); + Engine.Template.WinClassic app = wm.startWin95(ie, "Internet Explorer 4", null, true, true); app.BringToFront(); startmenu.Hide(); } else if (objListViewItem.Text == "Web Chat Setup") { WinClassicInstaller inst = new WinClassicInstaller(); inst.installname.Text = "Web Chat 1998"; - Main.Template.WinClassic app = wm.startWin95(inst, "Web Chat Setup", null, true, true); + Engine.Template.WinClassic app = wm.startWin95(inst, "Web Chat Setup", null, true, true); app.BringToFront(); startmenu.Hide(); } |
