aboutsummaryrefslogtreecommitdiff
path: root/Histacom2/OS/Win95/Win95Apps
diff options
context:
space:
mode:
authorMichael Webb <[email protected]>2019-04-08 19:12:48 -0500
committerGitHub <[email protected]>2019-04-08 19:12:48 -0500
commit84ef46952f11ed3c17e16297264ab84ac4fbbc1b (patch)
tree6c1443e8e9d4cb28f8e4599e79cdc52641ff4cd7 /Histacom2/OS/Win95/Win95Apps
parent9d3fa715e583b668f2ffd3754886b343c5440032 (diff)
parent86fc6b56d9285975d915646bb3f01b5c4c131caa (diff)
downloadhistacom2-net-core.tar.gz
histacom2-net-core.tar.bz2
histacom2-net-core.zip
Merge pull request #7 from reflectronic/netcorenet-core
Port to .NET Core
Diffstat (limited to 'Histacom2/OS/Win95/Win95Apps')
-rw-r--r--Histacom2/OS/Win95/Win95Apps/IE3Sites/Website12padams1998.Designer.cs (renamed from Histacom2/OS/Win95/Win95Apps/IE3Sites/12padams1998.Designer.cs)4
-rw-r--r--Histacom2/OS/Win95/Win95Apps/IE3Sites/Website12padams1998.cs (renamed from Histacom2/OS/Win95/Win95Apps/IE3Sites/12padams1998.cs)4
-rw-r--r--Histacom2/OS/Win95/Win95Apps/IE3Sites/Website12padams1998.resx (renamed from Histacom2/OS/Win95/Win95Apps/IE3Sites/12padams1998.resx)0
-rw-r--r--Histacom2/OS/Win95/Win95Apps/WinClassicIE3.cs4
-rw-r--r--Histacom2/OS/Win95/Win95Apps/WinClassicInstaller.cs3
5 files changed, 8 insertions, 7 deletions
diff --git a/Histacom2/OS/Win95/Win95Apps/IE3Sites/12padams1998.Designer.cs b/Histacom2/OS/Win95/Win95Apps/IE3Sites/Website12padams1998.Designer.cs
index dc00477..4e0f8fc 100644
--- a/Histacom2/OS/Win95/Win95Apps/IE3Sites/12padams1998.Designer.cs
+++ b/Histacom2/OS/Win95/Win95Apps/IE3Sites/Website12padams1998.Designer.cs
@@ -1,6 +1,6 @@
namespace Histacom2.OS.Win95.Win95Apps.IE3Sites
{
- partial class _12padams1998
+ partial class Website12padams1998
{
/// <summary>
/// Required designer variable.
@@ -28,7 +28,7 @@
/// </summary>
private void InitializeComponent()
{
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(_12padams1998));
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Website12padams1998));
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.panel1 = new System.Windows.Forms.Panel();
diff --git a/Histacom2/OS/Win95/Win95Apps/IE3Sites/12padams1998.cs b/Histacom2/OS/Win95/Win95Apps/IE3Sites/Website12padams1998.cs
index f55ee45..aec122b 100644
--- a/Histacom2/OS/Win95/Win95Apps/IE3Sites/12padams1998.cs
+++ b/Histacom2/OS/Win95/Win95Apps/IE3Sites/Website12padams1998.cs
@@ -13,10 +13,10 @@ using Histacom2.GlobalPrograms;
namespace Histacom2.OS.Win95.Win95Apps.IE3Sites
{
- public partial class _12padams1998 : UserControl
+ public partial class Website12padams1998 : UserControl
{
bool clicked = false;
- public _12padams1998()
+ public Website12padams1998()
{
InitializeComponent();
button1.Paint += (s, args) => Paintbrush.PaintClassicBorders(s, args, 2);
diff --git a/Histacom2/OS/Win95/Win95Apps/IE3Sites/12padams1998.resx b/Histacom2/OS/Win95/Win95Apps/IE3Sites/Website12padams1998.resx
index 6a9a4c8..6a9a4c8 100644
--- a/Histacom2/OS/Win95/Win95Apps/IE3Sites/12padams1998.resx
+++ b/Histacom2/OS/Win95/Win95Apps/IE3Sites/Website12padams1998.resx
diff --git a/Histacom2/OS/Win95/Win95Apps/WinClassicIE3.cs b/Histacom2/OS/Win95/Win95Apps/WinClassicIE3.cs
index 34828cc..0ba3310 100644
--- a/Histacom2/OS/Win95/Win95Apps/WinClassicIE3.cs
+++ b/Histacom2/OS/Win95/Win95Apps/WinClassicIE3.cs
@@ -49,10 +49,10 @@ namespace Histacom2.OS.Win95.Win95Apps
uc = new GooglePrototype();
break;
case "www.12padams.com":
- uc = new _12padams1998();
+ uc = new Website12padams1998();
break;
case "12padams.com":
- uc = new _12padams1998();
+ uc = new Website12padams1998();
newURL = "www.12padams.com";
break;
case "google.com":
diff --git a/Histacom2/OS/Win95/Win95Apps/WinClassicInstaller.cs b/Histacom2/OS/Win95/Win95Apps/WinClassicInstaller.cs
index a15b1e1..0b075e0 100644
--- a/Histacom2/OS/Win95/Win95Apps/WinClassicInstaller.cs
+++ b/Histacom2/OS/Win95/Win95Apps/WinClassicInstaller.cs
@@ -7,7 +7,8 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
-using TimeHACK.OS.Win95;
+using Histacom2.OS.Win95;
+using Histacom2;
namespace TimeHACK.WinClassicForms
{