aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main/OS/Win98
diff options
context:
space:
mode:
authorlempamo <[email protected]>2017-08-17 14:10:30 -0400
committerlempamo <[email protected]>2017-08-17 14:10:30 -0400
commitcba109cd8ae5203b5e393a15e7918eb6dce19a96 (patch)
tree9cb7d978a7085710680246e5b9b73276d69b5b09 /TimeHACK.Main/OS/Win98
parent48fb80e89674127f89508ed2293cc591aaf6af4b (diff)
downloadhistacom2-cba109cd8ae5203b5e393a15e7918eb6dce19a96.tar.gz
histacom2-cba109cd8ae5203b5e393a15e7918eb6dce19a96.tar.bz2
histacom2-cba109cd8ae5203b5e393a15e7918eb6dce19a96.zip
IE4 is now IE3
Diffstat (limited to 'TimeHACK.Main/OS/Win98')
-rw-r--r--TimeHACK.Main/OS/Win98/Win98.Designer.cs2
-rw-r--r--TimeHACK.Main/OS/Win98/Win98.cs4
2 files changed, 3 insertions, 3 deletions
diff --git a/TimeHACK.Main/OS/Win98/Win98.Designer.cs b/TimeHACK.Main/OS/Win98/Win98.Designer.cs
index 8a786ce..d4507a5 100644
--- a/TimeHACK.Main/OS/Win98/Win98.Designer.cs
+++ b/TimeHACK.Main/OS/Win98/Win98.Designer.cs
@@ -918,7 +918,7 @@ namespace TimeHACK.OS.Win98
this.desktopImages.TransparentColor = System.Drawing.Color.Transparent;
this.desktopImages.Images.SetKeyName(0, "");
this.desktopImages.Images.SetKeyName(1, "WinClassicFolder.png");
- this.desktopImages.Images.SetKeyName(2, "WinClassicIE4.png");
+ this.desktopImages.Images.SetKeyName(2, "WinClassicIE3.png");
this.desktopImages.Images.SetKeyName(3, "WinClassicInbox.png");
this.desktopImages.Images.SetKeyName(4, "WinClassicMSN.png");
this.desktopImages.Images.SetKeyName(5, "WinClassicNetworking.png");
diff --git a/TimeHACK.Main/OS/Win98/Win98.cs b/TimeHACK.Main/OS/Win98/Win98.cs
index 422d688..008be03 100644
--- a/TimeHACK.Main/OS/Win98/Win98.cs
+++ b/TimeHACK.Main/OS/Win98/Win98.cs
@@ -242,7 +242,7 @@ namespace TimeHACK.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.StartWin95(new WinClassicIE4(), "Internet Explorer 4", Properties.Resources.Win95IconIE4, true, true);
+ ie = wm.StartWin95(new WinClassicIE3(), "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 +262,7 @@ namespace TimeHACK.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.StartWin95(new WinClassicIE4(), "Internet Explorer 4", Properties.Resources.Win95IconIE4, true, true);
+ ie = wm.StartWin95(new WinClassicIE3(), "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);