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

#5784 Fix using the wrong serial key

  • Loading branch information...
XinyuHou committed Dec 28, 2016
1 parent ade4b7f commit b69570ec2c746948f3987370ff35eba4a93293a4
Showing with 1 addition and 1 deletion.
  1. +1 −1 src/gui/src/LicenseManager.cpp
@@ -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()) {

0 comments on commit b69570e

Please sign in to comment.