aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Engine/WindowManager.cs
diff options
context:
space:
mode:
authorAShifter <[email protected]>2017-04-22 13:52:18 -0600
committerGitHub <[email protected]>2017-04-22 13:52:18 -0600
commit29f9b993345d8ae0b20328786eaa25e7ae0ceb55 (patch)
treed6f255e82abb086a11d8678827ac2eea94f1f6fe /TimeHACK.Engine/WindowManager.cs
parente6474bbf221d26d227e42174c4d1ab939987be2b (diff)
parente0b4f16b01728d772ec2c3907116e71b3957f473 (diff)
downloadhistacom2-29f9b993345d8ae0b20328786eaa25e7ae0ceb55.tar.gz
histacom2-29f9b993345d8ae0b20328786eaa25e7ae0ceb55.tar.bz2
histacom2-29f9b993345d8ae0b20328786eaa25e7ae0ceb55.zip
Merge pull request #46 from AShifter/master
commit
Diffstat (limited to 'TimeHACK.Engine/WindowManager.cs')
-rw-r--r--TimeHACK.Engine/WindowManager.cs7
1 files changed, 2 insertions, 5 deletions
diff --git a/TimeHACK.Engine/WindowManager.cs b/TimeHACK.Engine/WindowManager.cs
index ceca43f..7a45011 100644
--- a/TimeHACK.Engine/WindowManager.cs
+++ b/TimeHACK.Engine/WindowManager.cs
@@ -59,14 +59,11 @@ namespace TimeHACK.Engine
return app;
}
- public Infobox95 startInfobox95(String title, String text, Image erroricon)
+ public WinClassic startInfobox95(String title, String text, Image erroricon)
{
Infobox95 app = new Infobox95();
- app.Title.Text = title;
- app.Text = title;
app.infoText.Text = text;
- app.Show();
- return app;
+ return startWin95(app, title, null, false, false);
}
public WinClassic startAboutBox95(String shortname, String longname, Image appicon)