summaryrefslogtreecommitdiffstats
path: root/kdeui
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2018-06-30 16:23:22 +0200
committerSlávek Banko <slavek.banko@axis.cz>2018-06-30 17:32:40 +0200
commit92a29f00ef97677512d89cf16c2df8ed8af83ed7 (patch)
tree5f4ef139584a03d7b156b93020eb4a2bf201cba5 /kdeui
parentd13c74fc671423161a1736a0a59552a3f4eae5d5 (diff)
downloadtdelibs-92a29f00ef97677512d89cf16c2df8ed8af83ed7.tar.gz
tdelibs-92a29f00ef97677512d89cf16c2df8ed8af83ed7.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> (cherry picked from commit aa83c86cd30e77bad7fdb2b047ce256a24c883b5)
Diffstat (limited to 'kdeui')
-rw-r--r--kdeui/kaboutapplication.cpp6
-rw-r--r--kdeui/kaboutkde.cpp2
-rw-r--r--kdeui/kbugreport.cpp8
-rw-r--r--kdeui/kbugreport.h2
4 files changed, 10 insertions, 8 deletions
diff --git a/kdeui/kaboutapplication.cpp b/kdeui/kaboutapplication.cpp
index 8d5828960..bc7a97cf6 100644
--- a/kdeui/kaboutapplication.cpp
+++ b/kdeui/kaboutapplication.cpp
@@ -113,8 +113,10 @@ void KAboutApplication::buildDialog( const KAboutData *aboutData )
KActiveLabel* activeLabel = new KActiveLabel( authorPage );
if (!aboutData->customAuthorTextEnabled())
{
- 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" );
+ 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" );
else {
if( aboutData->authors().count() == 1 && ( aboutData->authors().first().emailAddress() == aboutData->bugAddress() ) )
{
diff --git a/kdeui/kaboutkde.cpp b/kdeui/kaboutkde.cpp
index 76de10292..b9e525e61 100644
--- a/kdeui/kaboutkde.cpp
+++ b/kdeui/kaboutkde.cpp
@@ -52,7 +52,7 @@ KAboutKDE::KAboutKDE( 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.pearsoncomputing.net\">http://bugs.pearsoncomputing.net</A> or "
+ "<a href=\"http://bugs.trinitydesktop.org\">http://bugs.trinitydesktop.org</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 "
diff --git a/kdeui/kbugreport.cpp b/kdeui/kbugreport.cpp
index 03f12c9cb..9116d77e7 100644
--- a/kdeui/kbugreport.cpp
+++ b/kdeui/kbugreport.cpp
@@ -88,7 +88,7 @@ KBugReport::KBugReport( TQWidget * parentw, bool modal, const KAboutData *aboutD
TQWidget * parent = plainPage();
d->submitBugButton = 0;
- //if ( m_aboutData->bugAddress() == TQString::fromLatin1("submit@bugs.pearsoncomputing.net") )
+ //if ( m_aboutData->bugAddress() == TQString::fromLatin1("submit@bugs.trinitydesktop.org") )
//{
// // This is a core KDE application -> redirect to the web form
// Always redirect to the Web form for Trinity
@@ -283,7 +283,7 @@ KBugReport::~KBugReport()
void KBugReport::updateURL()
{
- KURL url ( "http://bugs.pearsoncomputing.net/enter_bug.cgi" );
+ KURL url ( "http://bugs.trinitydesktop.org/enter_bug.cgi" );
url.addQueryItem( "product", "TDE" );
url.addQueryItem( "op_sys", d->os );
url.addQueryItem( "cf_kde_compiler", KDE_COMPILER_VERSION );
@@ -418,7 +418,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.pearsoncomputing.net/ for instructions.");
+ "See http://bugs.trinitydesktop.org/ for instructions.");
KMessageBox::error(this, msg + "\n\n" + d->lastError);
return;
}
@@ -486,7 +486,7 @@ bool KBugReport::sendBugReport()
{
TQString recipient ( m_aboutData ?
m_aboutData->bugAddress() :
- TQString::fromLatin1("submit@bugs.pearsoncomputing.net") );
+ TQString::fromLatin1("submit@bugs.trinitydesktop.org") );
TQString command;
command = locate("exe", "ksendbugmail");
diff --git a/kdeui/kbugreport.h b/kdeui/kbugreport.h
index d97d760f2..f19d0541b 100644
--- a/kdeui/kbugreport.h
+++ b/kdeui/kbugreport.h
@@ -66,7 +66,7 @@ protected slots:
*/
virtual void slotSetFrom();
/**
- * The URL-Label "http://bugs.pearsoncomputing.net/" was clicked.
+ * The URL-Label "http://bugs.trinitydesktop.org/" was clicked.
* @deprecated remove in KDE4.0
*/
virtual void slotUrlClicked(const TQString &);