diff options
| author | JayXKanz666 <[email protected]> | 2017-07-13 16:46:24 +0200 |
|---|---|---|
| committer | JayXKanz666 <[email protected]> | 2017-07-13 16:46:24 +0200 |
| commit | 264deb3774935da3faba95fef55a94227e3f2368 (patch) | |
| tree | 2eac43f957e8a20c3c773119155bc328c9851244 /TimeHACK.Engine/WindowManager.cs | |
| parent | dd76075ce70c2ac31f01b2450c7f64009489dee9 (diff) | |
| download | histacom2-264deb3774935da3faba95fef55a94227e3f2368.tar.gz histacom2-264deb3774935da3faba95fef55a94227e3f2368.tar.bz2 histacom2-264deb3774935da3faba95fef55a94227e3f2368.zip | |
Fixed type names
-`String` replaced with `string`
-`Boolean` replaced with `bool`
Diffstat (limited to 'TimeHACK.Engine/WindowManager.cs')
| -rw-r--r-- | TimeHACK.Engine/WindowManager.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/TimeHACK.Engine/WindowManager.cs b/TimeHACK.Engine/WindowManager.cs index 9e96673..156da2f 100644 --- a/TimeHACK.Engine/WindowManager.cs +++ b/TimeHACK.Engine/WindowManager.cs @@ -10,7 +10,7 @@ namespace TimeHACK.Engine { public static System.Drawing.Text.PrivateFontCollection pfc = new System.Drawing.Text.PrivateFontCollection(); - public WinClassic StartWin95(UserControl content, String title, Image icon, Boolean MaxButton, Boolean MinButton, Boolean ShowApplicationAsDialog = false) + public WinClassic StartWin95(UserControl content, string title, Image icon, bool MaxButton, bool MinButton, bool ShowApplicationAsDialog = false) { // Setup Window WinClassic app = new WinClassic(); @@ -72,7 +72,7 @@ namespace TimeHACK.Engine return app; } - public WinClassic StartInfobox95(String title, String text, Image erroricon) + public WinClassic StartInfobox95(string title, string text, Image erroricon) { Infobox95 app = new Infobox95(); app.infoText.Text = text; @@ -82,7 +82,7 @@ namespace TimeHACK.Engine return StartWin95(app, title, null, false, false); } - public WinClassic StartAboutBox95(String shortname, String longname, Image appicon) + public WinClassic StartAboutBox95(string shortname, string longname, Image appicon) { AboutBox95 uc = new AboutBox95(); uc.pictureBox1.Image = appicon; |
