Override the cursor while sending the report.

This commit is contained in:
dfighter1985 2015-02-20 02:44:22 +01:00
parent 457147d008
commit dddcf6158c
2 changed files with 4 additions and 1 deletions

View file

@ -23,7 +23,7 @@
namespace namespace
{ {
static const char *BUG_URL = "http://192.168.2.67/dfighter/r.php"; static const char *BUG_URL = "http://192.168.2.66/dfighter/r.php";
} }
class RCErrorSocketPvt class RCErrorSocketPvt

View file

@ -66,6 +66,7 @@ void RCErrorWidget::onLoad()
void RCErrorWidget::onSendClicked() void RCErrorWidget::onSendClicked()
{ {
m_ui.sendButton->setEnabled( false ); m_ui.sendButton->setEnabled( false );
QApplication::setOverrideCursor( Qt::WaitCursor );
RCErrorData data; RCErrorData data;
data.description = m_ui.descriptionEdit->toPlainText(); data.description = m_ui.descriptionEdit->toPlainText();
@ -87,6 +88,8 @@ void RCErrorWidget::onCBClicked()
void RCErrorWidget::onReportSent() void RCErrorWidget::onReportSent()
{ {
QApplication::setOverrideCursor( Qt::ArrowCursor );
QMessageBox::information( this, QMessageBox::information( this,
tr( "Report sent" ), tr( "Report sent" ),
tr( "The report has been sent." ) ); tr( "The report has been sent." ) );