This repository has been archived by the owner. It is now read-only.
Permalink
Browse files

#5657 Update buy now links

  • Loading branch information...
nlyan committed Oct 20, 2016
1 parent ae59090 commit 868887155dea2ec479f0304cd608ce305e7a4a0c
Showing with 8 additions and 1 deletion.
  1. +7 −0 src/gui/src/ActivationDialog.cpp
  2. +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

Please sign in to comment.