From c2a9aae9ca56ae861a9a91536b743eb47056057a Mon Sep 17 00:00:00 2001 From: twanvl Date: Sat, 5 Feb 2011 22:11:23 +0000 Subject: [PATCH] about window text git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@1650 0fc631ac-6414-0410-93d0-97cfa31319b6 --- src/gui/about_window.cpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/gui/about_window.cpp b/src/gui/about_window.cpp index 101e3e0b..28272905 100644 --- a/src/gui/about_window.cpp +++ b/src/gui/about_window.cpp @@ -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)