aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main/OS/Win95/Win95.cs
diff options
context:
space:
mode:
authorlempamo <[email protected]>2017-07-06 13:17:41 -0400
committerlempamo <[email protected]>2017-07-06 13:17:41 -0400
commit77f783fe2b6999720c900aaf32103bec906f9da9 (patch)
treef4374934f8e8e514cd94e2dc80c1309a19386f2b /TimeHACK.Main/OS/Win95/Win95.cs
parenta3d4fab4392a149492e4896411cc44f0adf9eb2e (diff)
downloadhistacom2-77f783fe2b6999720c900aaf32103bec906f9da9.tar.gz
histacom2-77f783fe2b6999720c900aaf32103bec906f9da9.tar.bz2
histacom2-77f783fe2b6999720c900aaf32103bec906f9da9.zip
You can install WebChat again
Diffstat (limited to 'TimeHACK.Main/OS/Win95/Win95.cs')
-rw-r--r--TimeHACK.Main/OS/Win95/Win95.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/TimeHACK.Main/OS/Win95/Win95.cs b/TimeHACK.Main/OS/Win95/Win95.cs
index c326c64..c5e7799 100644
--- a/TimeHACK.Main/OS/Win95/Win95.cs
+++ b/TimeHACK.Main/OS/Win95/Win95.cs
@@ -238,7 +238,7 @@ namespace TimeHACK.OS.Win95
private void installerTestToolStripMenuItem_Click(object sender, EventArgs e)
{
- Win95Installer openinstaller = new Win95Installer();
+ Win95Installer openinstaller = new Win95Installer("Testing");
WinClassic app = wm.StartWin95(openinstaller, "Installer", null, false, true);
AddTaskBarItem(app, app.Tag.ToString(), "Installer", null);
@@ -278,8 +278,8 @@ namespace TimeHACK.OS.Win95
}
else if (objListViewItem.Text == "Web Chat Setup")
{
- Win95Installer inst = new Win95Installer();
- inst.installname.Text = "Web Chat 1998";
+ Win95Installer inst = new Win95Installer("Web Chat 1998");
+ inst.InstallCompleted += (sendr, args) => WebChatToolStripMenuItem.Visible = true;
WinClassic app = wm.StartWin95(inst, "Web Chat Setup", null, true, true);
AddTaskBarItem(app, app.Tag.ToString(), "Web Chat Setup", null);
app.BringToFront();