|
Lines 88-94
KBugReport::KBugReport( TQWidget * parentw, bool modal, const TDEAboutData *abou
Link Here
|
| 88 |
TQWidget * parent = plainPage(); |
88 |
TQWidget * parent = plainPage(); |
| 89 |
d->submitBugButton = 0; |
89 |
d->submitBugButton = 0; |
| 90 |
|
90 |
|
| 91 |
//if ( m_aboutData->bugAddress() == TQString::fromLatin1("submit@bugs.pearsoncomputing.net") ) |
91 |
//if ( m_aboutData->bugAddress() == TQString::fromLatin1("submit@bugs.trinitydesktop.org") ) |
| 92 |
//{ |
92 |
//{ |
| 93 |
// // This is a core KDE application -> redirect to the web form |
93 |
// // This is a core KDE application -> redirect to the web form |
| 94 |
// Always redirect to the Web form for Trinity |
94 |
// Always redirect to the Web form for Trinity |
|
Lines 284-290
KBugReport::~KBugReport()
Link Here
|
| 284 |
|
284 |
|
| 285 |
void KBugReport::updateURL() |
285 |
void KBugReport::updateURL() |
| 286 |
{ |
286 |
{ |
| 287 |
KURL url ( "http://bugs.pearsoncomputing.net/enter_bug.cgi" ); |
287 |
KURL url ( "http://bugs.trinitydesktop.org/enter_bug.cgi" ); |
| 288 |
url.addQueryItem( "product", "TDE" ); |
288 |
url.addQueryItem( "product", "TDE" ); |
| 289 |
url.addQueryItem( "op_sys", d->os ); |
289 |
url.addQueryItem( "op_sys", d->os ); |
| 290 |
url.addQueryItem( "cf_kde_compiler", KDE_COMPILER_VERSION ); |
290 |
url.addQueryItem( "cf_kde_compiler", KDE_COMPILER_VERSION ); |
|
Lines 419-425
void KBugReport::slotOk( void )
Link Here
|
| 419 |
{ |
419 |
{ |
| 420 |
TQString msg = i18n("Unable to send the bug report.\n" |
420 |
TQString msg = i18n("Unable to send the bug report.\n" |
| 421 |
"Please submit a bug report manually...\n" |
421 |
"Please submit a bug report manually...\n" |
| 422 |
"See http://bugs.pearsoncomputing.net/ for instructions."); |
422 |
"See http://bugs.trinitydesktop.org/ for instructions."); |
| 423 |
KMessageBox::error(this, msg + "\n\n" + d->lastError); |
423 |
KMessageBox::error(this, msg + "\n\n" + d->lastError); |
| 424 |
return; |
424 |
return; |
| 425 |
} |
425 |
} |
|
Lines 487-493
bool KBugReport::sendBugReport()
Link Here
|
| 487 |
{ |
487 |
{ |
| 488 |
TQString recipient ( m_aboutData ? |
488 |
TQString recipient ( m_aboutData ? |
| 489 |
m_aboutData->bugAddress() : |
489 |
m_aboutData->bugAddress() : |
| 490 |
TQString::fromLatin1("submit@bugs.pearsoncomputing.net") ); |
490 |
TQString::fromLatin1("submit@bugs.trinitydesktop.org") ); |
| 491 |
|
491 |
|
| 492 |
TQString command; |
492 |
TQString command; |
| 493 |
command = locate("exe", "tdesendbugmail"); |
493 |
command = locate("exe", "tdesendbugmail"); |