Link clicker fix.

This commit is contained in:
cora32 2015-03-24 00:49:38 +03:00
parent cf7dfeb26b
commit 9ef9b5dca7
2 changed files with 6 additions and 0 deletions

View File

@ -2187,6 +2187,11 @@ void nesca_3::changeNSTrackLabel(bool status)
else ui->NSTrackStatusLabel->setStyleSheet("background-color: black; border: 1px solid white;");
}
void nesca_3::onLinkClicked(QUrl link)
{
QDesktopServices::openUrl(link);
}
void nesca_3::ConnectEvrthng()
{
connect ( pbTh, SIGNAL(upd()), this, SLOT(slotPBUpdate()));

View File

@ -61,6 +61,7 @@ protected:
QString GetSSLContent(QString str);
void SSLConnect(QString str);
protected slots:
void onLinkClicked(QUrl);
void MaxBrutingThr_ChangeValue(QString str);
void ThreadDelay_ChangeValue(QString val);
void ChangePingerOK(bool val);