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

#5657 Remove unused CoreInterfaces

  • Loading branch information...
nlyan committed Oct 17, 2016
1 parent fc67cdf commit 98610fabde2264767c76f52b310d2e3f7f22056e
Showing with 0 additions and 22 deletions.
  1. +0 −19 src/gui/src/CoreInterface.cpp
  2. +0 −3 src/gui/src/CoreInterface.h
@@ -38,12 +38,6 @@ CoreInterface::CoreInterface()
{
}
-QString CoreInterface::getPluginDir()
-{
- QStringList args("--get-plugin-dir");
- return run(args);
-}
-
QString CoreInterface::getProfileDir()
{
QStringList args("--get-profile-dir");
@@ -68,19 +62,6 @@ QString CoreInterface::getSerialKeyFilePath()
return filename;
}
-QString CoreInterface::activateSerial(const QString& serial)
-{
- QStringList args("--subscription-serial");
- args << serial;
-
- return run(args);
-}
-
-QString CoreInterface::checkSubscription()
-{
- QStringList args("--check-subscription");
- return run(args);
-}
QString CoreInterface::notifyActivation(const QString& identity)
{
@@ -24,13 +24,10 @@ class CoreInterface
public:
CoreInterface();
- QString getPluginDir();
QString getProfileDir();
QString getInstalledDir();
QString getArch();
QString getSerialKeyFilePath();
- QString activateSerial(const QString& serial);
- QString checkSubscription();
QString notifyActivation(const QString& identity);
QString run(const QStringList& args, const QString& input = "");
};

0 comments on commit 98610fa

Please sign in to comment.