about window text

git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@1650 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
twanvl
2011-02-05 22:11:23 +00:00
parent 6981c4a2b4
commit c2a9aae9ca
+4 -5
View File
@@ -52,11 +52,10 @@ void AboutWindow::draw(DC& dc) {
// draw version info
dc.SetFont(wxFont(9, wxSWISS, wxNORMAL, wxNORMAL, false, _("Arial")));
dc.DrawText(_("Version: ") + app_version.toString() + version_suffix, 34, 110);
dc.DrawText(_("This is a development version!"), 34, 130);
dc.DrawText(_(" it probably contains lots bugs,"), 34, 147);
dc.DrawText(_(" it misses some very important features,"), 34, 164);
dc.DrawText(_(" don't use it for anything important"), 34, 181);
dc.DrawText(_("Copyright \xA9 2007 Twan van Laarhoven"), 34, 214);
dc.DrawText(_("Copyright \xA9 2001-2011"), 34, 130);
dc.DrawText(_(" Twan van Laarhoven,"), 34, 147);
dc.DrawText(_(" Sean Hunt,"), 34, 164);
dc.DrawText(_(" and the other MSE developers"), 34, 181);
}
BEGIN_EVENT_TABLE(AboutWindow, wxDialog)