diff options
| author | John Tur <reflectronic@outlook.com> | 2019-04-08 18:22:18 -0400 |
|---|---|---|
| committer | John Tur <reflectronic@outlook.com> | 2019-04-08 18:22:18 -0400 |
| commit | 22a2886bed21e86774a8e96f567b1f9acf918a4c (patch) | |
| tree | 22780d7908d1c40e02fa97cc68a78efd874170a0 /Histacom2/OS/Win98 | |
| parent | 9d3fa715e583b668f2ffd3754886b343c5440032 (diff) | |
| download | histacom2-22a2886bed21e86774a8e96f567b1f9acf918a4c.tar.gz histacom2-22a2886bed21e86774a8e96f567b1f9acf918a4c.tar.bz2 histacom2-22a2886bed21e86774a8e96f567b1f9acf918a4c.zip | |
Port to .NET Core
Diffstat (limited to 'Histacom2/OS/Win98')
| -rw-r--r-- | Histacom2/OS/Win98/Windows98.Designer.cs (renamed from Histacom2/OS/Win98/Win98.Designer.cs) | 0 | ||||
| -rw-r--r-- | Histacom2/OS/Win98/Windows98.cs (renamed from Histacom2/OS/Win98/Win98.cs) | 6 | ||||
| -rw-r--r-- | Histacom2/OS/Win98/Windows98.resx (renamed from Histacom2/OS/Win98/Win98.resx) | 0 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Histacom2/OS/Win98/Win98.Designer.cs b/Histacom2/OS/Win98/Windows98.Designer.cs index b8fc6ea..b8fc6ea 100644 --- a/Histacom2/OS/Win98/Win98.Designer.cs +++ b/Histacom2/OS/Win98/Windows98.Designer.cs diff --git a/Histacom2/OS/Win98/Win98.cs b/Histacom2/OS/Win98/Windows98.cs index 36939a8..820f01c 100644 --- a/Histacom2/OS/Win98/Win98.cs +++ b/Histacom2/OS/Win98/Windows98.cs @@ -6,12 +6,12 @@ using System.Media; using System.Windows.Forms; using Histacom2.Engine; using Histacom2.Engine.Template; -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; using Histacom2.GlobalPrograms; +using Histacom2.OS.Win95; namespace Histacom2.OS.Win98 { @@ -381,7 +381,7 @@ namespace Histacom2.OS.Win98 public void AddTaskBarItem(Form Application, string ApplicationID, string ApplicationName, Image ApplicationIcon) { - taskbarItems = tb.AddTaskbarItem95(ApplicationID, ApplicationName, ApplicationIcon, (UserControl)new Win95TaskBarItem(), taskbarItems); + taskbarItems = tb.AddTaskbarItem95(ApplicationID, ApplicationName, ApplicationIcon, (UserControl)new Windows95TaskbarItem(), taskbarItems); Application.FormClosed += new FormClosedEventHandler(UpdateTaskbarFromClosedApplication); } @@ -400,7 +400,7 @@ namespace Histacom2.OS.Win98 foreach (Form form in tb.GetAllOpenApps()) { // Calls that "AddToTaskbar" thing - taskbarItems = tb.AddTaskbarItem95(form.Tag.ToString(), form.Text.ToString(), (Image)form.Icon.ToBitmap(), (UserControl)new Win95TaskBarItem(), taskbarItems); + taskbarItems = tb.AddTaskbarItem95(form.Tag.ToString(), form.Text.ToString(), (Image)form.Icon.ToBitmap(), (UserControl)new Windows95TaskbarItem(), taskbarItems); } } diff --git a/Histacom2/OS/Win98/Win98.resx b/Histacom2/OS/Win98/Windows98.resx index 28744a3..28744a3 100644 --- a/Histacom2/OS/Win98/Win98.resx +++ b/Histacom2/OS/Win98/Windows98.resx |
