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

#5707 Prefer 'update' over 'upgrade'

  • Loading branch information...
nlyan committed Oct 28, 2016
1 parent fa7daa4 commit af9037276c718c6b224fe6695422703f19e87132
@@ -29,7 +29,7 @@ void ActivationNotifier::setIdentity(QString identity)
m_Identity = identity;
}
-void ActivationNotifier::setUpgradeInfo(QString const& fromVersion,
+void ActivationNotifier::setUpdateInfo(QString const& fromVersion,
QString const& toVersion,
QString const& serialKey)
{
@@ -49,7 +49,7 @@ void ActivationNotifier::notify()
}
}
-void ActivationNotifier::notifyUpgrade()
+void ActivationNotifier::notifyUpdate()
{
try {
CoreInterface coreInterface;
@@ -27,12 +27,12 @@ Q_OBJECT
explicit ActivationNotifier(QObject *parent = 0);
void setIdentity(QString identity);
- void setUpgradeInfo(QString const& fromVersion,
+ void setUpdateInfo(QString const& fromVersion,
QString const& toVersion, QString const& serialKey);
public slots:
void notify();
- void notifyUpgrade();
+ void notifyUpdate();
signals:
void finished();
@@ -65,7 +65,7 @@ QString CoreInterface::getSerialKeyFilePath()
QString CoreInterface::notifyUpdate (QString const& fromVersion,
QString const& toVersion,
QString const& serialKey) {
- QStringList args("--notify-upgrade");
+ QStringList args("--notify-update");
QString input(fromVersion + ":" + toVersion + ":" + serialKey);
return run(args, input);
}
@@ -74,7 +74,7 @@ LicenseManager::setSerialKey(QString serialKeyString, bool acceptExpired)
void
LicenseManager::notifyUpdate(QString fromVersion, QString toVersion) {
ActivationNotifier* notifier = new ActivationNotifier();
- notifier->setUpgradeInfo (fromVersion, toVersion,
+ notifier->setUpdateInfo (fromVersion, toVersion,
QString::fromStdString(m_serialKey.toString()));
QThread* thread = new QThread();
@@ -85,7 +85,7 @@ LicenseManager::notifyUpdate(QString fromVersion, QString toVersion) {
notifier->moveToThread(thread);
thread->start();
- QMetaObject::invokeMethod(notifier, "notifyUpgrade",
+ QMetaObject::invokeMethod(notifier, "notifyUpdate",
Qt::QueuedConnection);
}
@@ -208,8 +208,8 @@ ArgParser::parseToolArgs(ToolArgs& args, int argc, const char* const* argv)
args.m_notifyActivation = true;
return true;
}
- else if (isArg(i, argc, argv, NULL, "--notify-upgrade", 0)) {
- args.m_notifyUpgrade = true;
+ else if (isArg(i, argc, argv, NULL, "--notify-update", 0)) {
+ args.m_notifyUpdate = true;
return true;
}
else {
@@ -80,8 +80,8 @@ ToolApp::run(int argc, char** argv)
else if (m_args.m_getArch) {
std::cout << ARCH->getPlatformName() << std::endl;
}
- else if (m_args.m_notifyUpgrade) {
- notifyUpgrade();
+ else if (m_args.m_notifyUpdate) {
+ notifyUpdate();
}
else if (m_args.m_notifyActivation) {
notifyActivation();
@@ -138,7 +138,7 @@ ToolApp::loginAuth()
}
void
-ToolApp::notifyUpgrade()
+ToolApp::notifyUpdate()
{
String data;
std::cin >> data;
@@ -30,7 +30,7 @@ class ToolApp : public MinimalApp
private:
void loginAuth();
void notifyActivation();
- void notifyUpgrade();
+ void notifyUpdate();
private:
ToolArgs m_args;
@@ -24,6 +24,6 @@ ToolArgs::ToolArgs() :
m_getProfileDir(false),
m_getArch(false),
m_notifyActivation(false),
- m_notifyUpgrade(false)
+ m_notifyUpdate(false)
{
}
@@ -30,5 +30,5 @@ class ToolArgs {
bool m_getProfileDir;
bool m_getArch;
bool m_notifyActivation;
- bool m_notifyUpgrade;
+ bool m_notifyUpdate;
};

0 comments on commit af90372

Please sign in to comment.