diff options
author | Slávek Banko <[email protected]> | 2018-06-30 16:23:22 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2018-06-30 16:28:39 +0200 |
commit | aa83c86cd30e77bad7fdb2b047ce256a24c883b5 (patch) | |
tree | 6a8cbf9e98ea9e136140365baa5cdfcee80160d2 /tdeui/tdeaboutapplication.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 <[email protected]>
Diffstat (limited to 'tdeui/tdeaboutapplication.cpp')
-rw-r--r-- | tdeui/tdeaboutapplication.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tdeui/tdeaboutapplication.cpp b/tdeui/tdeaboutapplication.cpp index ef9efb181..e9eb2f4b8 100644 --- a/tdeui/tdeaboutapplication.cpp +++ b/tdeui/tdeaboutapplication.cpp @@ -113,8 +113,10 @@ void TDEAboutApplication::buildDialog( const TDEAboutData *aboutData ) KActiveLabel* activeLabel = new KActiveLabel( authorPage ); if (!aboutData->customAuthorTextEnabled()) { - if ( aboutData->bugAddress().isEmpty() || aboutData->bugAddress() == "[email protected]") - text = i18n( "Please use <a href=\"http://bugs.pearsoncomputing.net\">http://bugs.pearsoncomputing.net</a> to report bugs.\n" ); + if ( aboutData->bugAddress().isEmpty() + || aboutData->bugAddress() == "[email protected]" + || aboutData->bugAddress() == "http://bugs.trinitydesktop.org") + text = i18n( "Please use <a href=\"http://bugs.trinitydesktop.org\">http://bugs.trinitydesktop.org</a> to report bugs.\n" ); else { if( aboutData->authors().count() == 1 && ( aboutData->authors().first().emailAddress() == aboutData->bugAddress() ) ) { |