- changed contact email address to bug report URL

This commit is contained in:
Mark Vejvoda 2011-10-18 01:40:49 +00:00
parent d98e35f245
commit dc4b367f69
3 changed files with 4 additions and 4 deletions

View File

@ -26,7 +26,7 @@ using namespace Shared::Platform;
namespace Glest { namespace Game {
const string mailString = "contact@megaglest.org";
const char *mailString = " http://bugs.megaglest.org";
const string glestVersionString = "v3.5.3-dev";
#if defined(SVNVERSION)
const string SVN_Rev = string("Rev: ") + string(SVNVERSION);
@ -143,7 +143,7 @@ string getAboutString1(int i) {
string getAboutString2(int i){
switch(i){
case 0: return "Web: http://www.megaglest.org http://glest.org";
case 1: return "Mail: " + mailString;
case 1: return "Bug reports: " + string(mailString);
case 2: return "Irc: irc://irc.freenode.net/glest";
}
return "";

View File

@ -23,7 +23,7 @@ using Shared::Util::sharedLibVersionString;
namespace Glest{ namespace Game{
extern const string mailString;
extern const char *mailString;
extern const string glestVersionString;
extern const string networkVersionString;

View File

@ -266,7 +266,7 @@ void stackdumper(unsigned int type, EXCEPTION_POINTERS *ep) {
class ExceptionHandler: public PlatformExceptionHandler{
public:
virtual void handle() {
string msg = "#1 An error occurred and " + string(mg_app_name) + " will close.\nPlease report this bug to "+mailString;
string msg = "#1 An error occurred and " + string(mg_app_name) + " will close.\nPlease report this bug to: " + string(mailString);
#ifdef WIN32
msg += ", attaching the generated " + getCrashDumpFileName()+ " file.";
#endif