diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2018-06-30 16:23:22 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2018-06-30 16:28:39 +0200 |
commit | aa83c86cd30e77bad7fdb2b047ce256a24c883b5 (patch) | |
tree | 6a8cbf9e98ea9e136140365baa5cdfcee80160d2 /tdecore/tdecmdlineargs.cpp | |
parent | 6734f5e47f496ca1b89e2fd6c51e46ec447e3de1 (diff) | |
download | tdelibs-aa83c86cd30e77bad7fdb2b047ce256a24c883b5.tar.gz tdelibs-aa83c86cd30e77bad7fdb2b047ce256a24c883b5.zip |
Fix bug reports link in about dialog
Update bug reports url to bugs.trinitydesktop.org
This resolves bug 2935
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'tdecore/tdecmdlineargs.cpp')
-rw-r--r-- | tdecore/tdecmdlineargs.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tdecore/tdecmdlineargs.cpp b/tdecore/tdecmdlineargs.cpp index 46d1b9f4a..0b9e2693f 100644 --- a/tdecore/tdecmdlineargs.cpp +++ b/tdecore/tdecmdlineargs.cpp @@ -625,8 +625,10 @@ TDECmdLineArgs::parseAllArgs() { if (!about->customAuthorTextEnabled ()) { - if (about->bugAddress().isEmpty() || about->bugAddress() == "bugs.pearsoncomputing.net" ) - printQ( i18n( "Please use http://bugs.pearsoncomputing.net to report bugs.\n" ) ); + if (about->bugAddress().isEmpty() + || about->bugAddress() == "submit@bugs.trinitydesktop.org" + || about->bugAddress() == "http://bugs.trinitydesktop.org" ) + printQ( i18n( "Please use http://bugs.trinitydesktop.org to report bugs.\n" ) ); else { if( about->authors().count() == 1 && about->authors().first().emailAddress() == about->bugAddress() ) printQ( i18n( "Please report bugs to %1.\n" ).arg( about->authors().first().emailAddress() ) ); |