aboutsummaryrefslogtreecommitdiff
path: root/Histacom2/OS/Win98/Win98.cs
diff options
context:
space:
mode:
authorFloppyDiskDrive <[email protected]>2017-09-18 16:43:40 -0500
committerFloppyDiskDrive <[email protected]>2017-09-18 16:43:40 -0500
commit3188a4eac09bbcfb1dffaa2e001f1f76137ed1ac (patch)
tree28c7cfc42927d9c340a5f17048a024227358fc5f /Histacom2/OS/Win98/Win98.cs
parent7f5d0c3915d178e4d412a0b1a9b48baf058b2afc (diff)
parent92495924b688faf93d37929a8dab27554ac78e4f (diff)
downloadhistacom2-3188a4eac09bbcfb1dffaa2e001f1f76137ed1ac.tar.gz
histacom2-3188a4eac09bbcfb1dffaa2e001f1f76137ed1ac.tar.bz2
histacom2-3188a4eac09bbcfb1dffaa2e001f1f76137ed1ac.zip
Merge branch 'master' of https://github.com/IBMPCDOS5/Histacom2
Diffstat (limited to 'Histacom2/OS/Win98/Win98.cs')
-rw-r--r--Histacom2/OS/Win98/Win98.cs6
1 files changed, 4 insertions, 2 deletions
diff --git a/Histacom2/OS/Win98/Win98.cs b/Histacom2/OS/Win98/Win98.cs
index a21b144..f4a9c07 100644
--- a/Histacom2/OS/Win98/Win98.cs
+++ b/Histacom2/OS/Win98/Win98.cs
@@ -10,6 +10,8 @@ using Histacom2.Engine.Template.Taskbars;
using Histacom2.OS.Win95.Win95Apps;
using Histacom2.OS.Win95.Win95Apps.Story;
using static Histacom2.Engine.SaveSystem;
+using Histacom2.OS.Win98.Win98Apps;
+
namespace Histacom2.OS.Win98
{
public partial class Windows98 : Form
@@ -242,7 +244,7 @@ namespace Histacom2.OS.Win98
private void InternetExplorerToolStripMenuItem_Click(object sender, EventArgs e)
{
if (ie != null) { wm.StartInfobox95("Error Opening Internet Explorer", "An instance of Internet Explorer 4 is already open.", InfoboxType.Warning, InfoboxButtons.OK); return; }
- ie = wm.Init(new WinClassicIE3(), "Internet Explorer 4", Properties.Resources.Win95IconIE4, true, true);
+ ie = wm.Init(new WinClassicIE4(), "Internet Explorer 4", Properties.Resources.Win95IconIE4, true, true);
AddTaskBarItem(ie, ie.Tag.ToString(), "Internet Explorer 4", Properties.Resources.Win95IconIE4);
ie.BringToFront();
ie.FormClosing += new FormClosingEventHandler(InternetExplorer4_Closing);
@@ -262,7 +264,7 @@ namespace Histacom2.OS.Win98
if (objListViewItem.Text == "Internet Explorer")
{
if (ie != null) { wm.StartInfobox95("Error Opening Internet Explorer", "An instance of Internet Explorer 4 is already open.", InfoboxType.Warning, InfoboxButtons.OK); return; }
- ie = wm.Init(new WinClassicIE3(), "Internet Explorer 4", Properties.Resources.Win95IconIE4, true, true);
+ ie = wm.Init(new WinClassicIE4(), "Internet Explorer 4", Properties.Resources.Win95IconIE4, true, true);
AddTaskBarItem(ie, ie.Tag.ToString(), "Internet Explorer 4", Properties.Resources.Win95IconIE4);
ie.BringToFront();
ie.FormClosing += new FormClosingEventHandler(InternetExplorer4_Closing);