aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Engine/Template/WinClassic.cs
diff options
context:
space:
mode:
authorlempamo <[email protected]>2017-03-31 17:47:56 -0400
committerGitHub <[email protected]>2017-03-31 17:47:56 -0400
commit5ec8f66c1ad558a165cf621b405bee7cba48be0b (patch)
tree055b21d8788a1946b60646daa5482126a4a23ec1 /TimeHACK.Engine/Template/WinClassic.cs
parent27419aa0dce06f9af5ee28f64aace365dcb7d816 (diff)
parent6a489cc2dc2edf42a5509ded949357576731f658 (diff)
downloadhistacom2-5ec8f66c1ad558a165cf621b405bee7cba48be0b.tar.gz
histacom2-5ec8f66c1ad558a165cf621b405bee7cba48be0b.tar.bz2
histacom2-5ec8f66c1ad558a165cf621b405bee7cba48be0b.zip
Merge branch 'master' into master
Diffstat (limited to 'TimeHACK.Engine/Template/WinClassic.cs')
-rw-r--r--TimeHACK.Engine/Template/WinClassic.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/TimeHACK.Engine/Template/WinClassic.cs b/TimeHACK.Engine/Template/WinClassic.cs
index de88c1a..db85a6a 100644
--- a/TimeHACK.Engine/Template/WinClassic.cs
+++ b/TimeHACK.Engine/Template/WinClassic.cs
@@ -2,7 +2,7 @@
using System.Runtime.InteropServices;
using System.Windows.Forms;
-namespace TimeHACK.Engine.Template
+namespace TimeHACK.Main.Template
{
public partial class WinClassic : Form
{
@@ -55,7 +55,7 @@ namespace TimeHACK.Engine.Template
this.Dock = DockStyle.Fill;
this.WindowState = FormWindowState.Maximized;
max = true;
- maximizebutton.Image = Properties.Resources.WinClassicRestore;
+ maximizebutton.Image = Engine.Properties.Resources.WinClassicRestore;
}
else
{
@@ -70,7 +70,7 @@ namespace TimeHACK.Engine.Template
this.Dock = DockStyle.None;
this.WindowState = FormWindowState.Normal;
max = false;
- maximizebutton.Image = Properties.Resources.WinClassicMax;
+ maximizebutton.Image = Engine.Properties.Resources.WinClassicMax;
}
}