Changed message box when no server detected

This commit is contained in:
Xinyu Hou 2014-11-25 14:30:40 +00:00
parent c560eabeb2
commit 5222b81600

View File

@ -513,8 +513,8 @@ bool MainWindow::clientArgs(QStringList& args, QString& app)
if (m_pCheckBoxAutoConnect->isChecked()) { if (m_pCheckBoxAutoConnect->isChecked()) {
if (m_pComboServerList->count() == 0) { if (m_pComboServerList->count() == 0) {
QMessageBox::warning(this, tr("No server detected"), QMessageBox::information(this, tr("No server detected"),
tr("Sorry, Synergy doesn't detect any server.")); tr("Sorry, Synergy hasn't detected any server."));
return false; return false;
} }
else { else {