|
Lines 345-351
void ReportInterface::sendUsingDefaultProduct() const
Link Here
|
| 345 |
void ReportInterface::addedToCC() |
345 |
void ReportInterface::addedToCC() |
| 346 |
{ |
346 |
{ |
| 347 |
//The user was added to the CC list, proceed with the attachment |
347 |
//The user was added to the CC list, proceed with the attachment |
| 348 |
connect(m_bugzillaManager, SIGNAL(attachToReportSent(int,int)), this, SLOT(attachSent(int,int))); |
348 |
connect(m_bugzillaManager, SIGNAL(attachToReportSent(int)), this, SLOT(attachSent(int))); |
| 349 |
connect(m_bugzillaManager, SIGNAL(attachToReportError(QString,QString)), |
349 |
connect(m_bugzillaManager, SIGNAL(attachToReportError(QString,QString)), |
| 350 |
this, SIGNAL(sendReportError(QString,QString))); |
350 |
this, SIGNAL(sendReportError(QString,QString))); |
| 351 |
BugReport report = newBugReportTemplate(); |
351 |
BugReport report = newBugReportTemplate(); |
| 352 |
- |
|
|