diff options
| author | lempamo <[email protected]> | 2017-04-12 22:58:15 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-04-12 22:58:15 -0400 |
| commit | 4cc2631a033d2bfb7a7e926f9b17d85862c2eea3 (patch) | |
| tree | 2f5f87e06eff4596229d1d20182d46ac5c329d46 /TimeHACK.Engine/WindowManager.cs | |
| parent | 84d4b47b35294d7aa8c1127e609e057d574a993d (diff) | |
| parent | f1e0c8f75de4a5086ff955789e9397696df25199 (diff) | |
| download | histacom2-4cc2631a033d2bfb7a7e926f9b17d85862c2eea3.tar.gz histacom2-4cc2631a033d2bfb7a7e926f9b17d85862c2eea3.tar.bz2 histacom2-4cc2631a033d2bfb7a7e926f9b17d85862c2eea3.zip | |
Merge pull request #42 from lempamo/master
Master
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 611d09e..ceca43f 100644 --- a/TimeHACK.Engine/WindowManager.cs +++ b/TimeHACK.Engine/WindowManager.cs @@ -69,14 +69,14 @@ namespace TimeHACK.Engine return app; } - public WinClassic startAboutBox95(String aboutwhat, String fulltitle, Image appicon) + public WinClassic startAboutBox95(String shortname, String longname, Image appicon) { AboutBox95 uc = new AboutBox95(); uc.pictureBox1.Image = appicon; - uc.textBox1.Text = fulltitle + "\r\nWindows 95\r\nCopyright © 1981-1995 Microsoft Corp."; + uc.textBox1.Text = longname + "\r\nWindows 95\r\nCopyright © 1981-1995 Microsoft Corp."; uc.Font = new Font(pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((0))); - return startWin95(uc, "About " + aboutwhat, null, false, false); + return startWin95(uc, "About " + shortname, null, false, false); } } } |
