summaryrefslogtreecommitdiffstats
path: root/tdecore
diff options
context:
space:
mode:
authorSlávek Banko <[email protected]>2018-06-30 16:23:22 +0200
committerSlávek Banko <[email protected]>2018-06-30 16:31:08 +0200
commit69fc44f5d55b813aeeb0c06473ceede28400e7bf (patch)
treee8a9b9653a38aefb9c134a924a196a303ff97340 /tdecore
parent7e1e03c04569978908cb1449aedc1cbc200ea20d (diff)
downloadtdelibs-69fc44f5d55b813aeeb0c06473ceede28400e7bf.tar.gz
tdelibs-69fc44f5d55b813aeeb0c06473ceede28400e7bf.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 <[email protected]> (cherry picked from commit aa83c86cd30e77bad7fdb2b047ce256a24c883b5)
Diffstat (limited to 'tdecore')
-rw-r--r--tdecore/tdecmdlineargs.cpp6
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() == "[email protected]"
+ || 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() ) );