diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-07-26 21:57:50 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-07-26 21:57:50 +0900 |
commit | dcb480334c2e8a53fd5ca421b6bd686ea594d4ac (patch) | |
tree | ceec30a117e991afff71c32d68a6e1eea1b7090d /tdeui | |
parent | 398bc87ef9d0ca9264b2d8bce7b8c2e3f134f49c (diff) | |
download | tdelibs-dcb480334c2e8a53fd5ca421b6bd686ea594d4ac.tar.gz tdelibs-dcb480334c2e8a53fd5ca421b6bd686ea594d4ac.zip |
Revert "Fix bug reports link in about dialog"
This reverts commit 69fc44f5d55b813aeeb0c06473ceede28400e7bf.
Diffstat (limited to 'tdeui')
-rw-r--r-- | tdeui/kbugreport.cpp | 8 | ||||
-rw-r--r-- | tdeui/kbugreport.h | 2 | ||||
-rw-r--r-- | tdeui/tdeaboutapplication.cpp | 6 | ||||
-rw-r--r-- | tdeui/tdeabouttde.cpp | 2 |
4 files changed, 8 insertions, 10 deletions
diff --git a/tdeui/kbugreport.cpp b/tdeui/kbugreport.cpp index 44243715d..7a2862cbf 100644 --- a/tdeui/kbugreport.cpp +++ b/tdeui/kbugreport.cpp @@ -88,7 +88,7 @@ KBugReport::KBugReport( TQWidget * parentw, bool modal, const TDEAboutData *abou TQWidget * parent = plainPage(); d->submitBugButton = 0; - //if ( m_aboutData->bugAddress() == TQString::fromLatin1("submit@bugs.trinitydesktop.org") ) + //if ( m_aboutData->bugAddress() == TQString::fromLatin1("submit@bugs.pearsoncomputing.net") ) //{ // // This is a core KDE application -> redirect to the web form // Always redirect to the Web form for Trinity @@ -284,7 +284,7 @@ KBugReport::~KBugReport() void KBugReport::updateURL() { - KURL url ( "http://bugs.trinitydesktop.org/enter_bug.cgi" ); + KURL url ( "http://bugs.pearsoncomputing.net/enter_bug.cgi" ); url.addQueryItem( "product", "TDE" ); url.addQueryItem( "op_sys", d->os ); url.addQueryItem( "cf_kde_compiler", KDE_COMPILER_VERSION ); @@ -419,7 +419,7 @@ void KBugReport::slotOk( void ) { TQString msg = i18n("Unable to send the bug report.\n" "Please submit a bug report manually...\n" - "See http://bugs.trinitydesktop.org/ for instructions."); + "See http://bugs.pearsoncomputing.net/ for instructions."); KMessageBox::error(this, msg + "\n\n" + d->lastError); return; } @@ -487,7 +487,7 @@ bool KBugReport::sendBugReport() { TQString recipient ( m_aboutData ? m_aboutData->bugAddress() : - TQString::fromLatin1("submit@bugs.trinitydesktop.org") ); + TQString::fromLatin1("submit@bugs.pearsoncomputing.net") ); TQString command; command = locate("exe", "tdesendbugmail"); diff --git a/tdeui/kbugreport.h b/tdeui/kbugreport.h index 3110d3dd6..e95c49902 100644 --- a/tdeui/kbugreport.h +++ b/tdeui/kbugreport.h @@ -71,7 +71,7 @@ protected slots: */ virtual void slotSetFrom(); /** - * The URL-Label "http://bugs.trinitydesktop.org/" was clicked. + * The URL-Label "http://bugs.pearsoncomputing.net/" was clicked. * @deprecated remove in KDE4.0 */ virtual void slotUrlClicked(const TQString &); diff --git a/tdeui/tdeaboutapplication.cpp b/tdeui/tdeaboutapplication.cpp index e9eb2f4b8..ef9efb181 100644 --- a/tdeui/tdeaboutapplication.cpp +++ b/tdeui/tdeaboutapplication.cpp @@ -113,10 +113,8 @@ void TDEAboutApplication::buildDialog( const TDEAboutData *aboutData ) KActiveLabel* activeLabel = new KActiveLabel( authorPage ); if (!aboutData->customAuthorTextEnabled()) { - if ( aboutData->bugAddress().isEmpty() - || aboutData->bugAddress() == "submit@bugs.trinitydesktop.org" - || 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" ); + if ( aboutData->bugAddress().isEmpty() || aboutData->bugAddress() == "submit@bugs.pearsoncomputing.net") + text = i18n( "Please use <a href=\"http://bugs.pearsoncomputing.net\">http://bugs.pearsoncomputing.net</a> to report bugs.\n" ); else { if( aboutData->authors().count() == 1 && ( aboutData->authors().first().emailAddress() == aboutData->bugAddress() ) ) { diff --git a/tdeui/tdeabouttde.cpp b/tdeui/tdeabouttde.cpp index 4f028d51d..c76388caf 100644 --- a/tdeui/tdeabouttde.cpp +++ b/tdeui/tdeabouttde.cpp @@ -52,7 +52,7 @@ TDEAboutKDE::TDEAboutKDE( TQWidget *parent, const char *name, bool modal ) "do so. However, you - the user - must tell us when " "something does not work as expected or could be done better.<br><br>" "The Trinity Desktop Environment has a bug tracking system. Visit " - "<a href=\"http://bugs.trinitydesktop.org\">http://bugs.trinitydesktop.org</a> or " + "<A HREF=\"http://bugs.pearsoncomputing.net\">http://bugs.pearsoncomputing.net</A> or " "use the \"Report Bug...\" dialog from the \"Help\" menu to report bugs.<br><br>" "If you have a suggestion for improvement then you are welcome to use " "the bug tracking system to register your wish. Make sure you use the " |