Skip to content

Commit

Permalink
deskflow#5784 Fix using the wrong serial key
Browse files Browse the repository at this point in the history
  • Loading branch information
Jerry (Xinyu Hou) authored Dec 28, 2016
1 parent ade4b7f commit b69570e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/src/LicenseManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ LicenseManager::setSerialKey(SerialKey serialKey, bool acceptExpired)
using std::swap;
swap (serialKey, m_serialKey);
m_AppConfig->setSerialKey(QString::fromStdString
(serialKey.toString()));
(m_serialKey.toString()));
emit serialKeyChanged(m_serialKey);

if (serialKey.isTrial()) {
Expand Down

0 comments on commit b69570e

Please sign in to comment.