Permalink
Showing
with
8 additions
and
1 deletion.
-
+7
−0
src/gui/src/ActivationDialog.cpp
-
+1
−1
src/gui/src/MainWindow.cpp
|
|
@@ -34,6 +34,13 @@ void ActivationDialog::refreshSerialKey() |
|
|
ui->m_pTextEditSerialKey->setText(m_appConfig->serialKey());
|
|
|
ui->m_pTextEditSerialKey->setFocus();
|
|
|
ui->m_pTextEditSerialKey->moveCursor(QTextCursor::End);
|
|
|
+ ui->m_trialLabel->setText(tr("<html><head/><body><p>Your trial has "
|
|
|
+ "expired. <a href=\"https://symless.com/"
|
|
|
+ "synergy/trial/thanks?id=%1\"><span "
|
|
|
+ "style=\"text-decoration: underline; "
|
|
|
+ "color:#0000ff;\">Buy now!</span></a>"
|
|
|
+ "</p></body></html>")
|
|
|
+ .arg (m_appConfig->serialKey()));
|
|
|
}
|
|
|
|
|
|
ActivationDialog::~ActivationDialog()
|
|
|
|
|
|
@@ -1095,7 +1095,7 @@ void MainWindow::endTrial(bool isExpired) |
|
|
if (isExpired) {
|
|
|
QString expiredNotice (
|
|
|
"<html><head/><body><p>Your %1 trial has expired. <a href="
|
|
|
- "\"http://symless.com/synergy/trial/thanks?id=%2\">"
|
|
|
+ "\"https://symless.com/synergy/trial/thanks?id=%2\">"
|
|
|
"<span style=\"text-decoration: underline;color:#0000ff;\">"
|
|
|
"Buy now!</span></a></p></body></html>"
|
|
|
);
|
|
|
|
0 comments on commit
8688871