From 61382c6eb10f96f83debda5b88528de75e1aaad2 Mon Sep 17 00:00:00 2001 From: "Jerry (Xinyu Hou)" Date: Wed, 8 Jul 2015 14:59:58 -0700 Subject: [PATCH] Revert "Added getInstallDir to Core Interface #4696" This reverts commit 5d770d420416bee66f40c21746891581449363a6. --- src/gui/src/CoreInterface.cpp | 6 ------ src/gui/src/CoreInterface.h | 1 - 2 files changed, 7 deletions(-) diff --git a/src/gui/src/CoreInterface.cpp b/src/gui/src/CoreInterface.cpp index 3f1b666b8a..0dea0ad6a5 100644 --- a/src/gui/src/CoreInterface.cpp +++ b/src/gui/src/CoreInterface.cpp @@ -39,12 +39,6 @@ QString CoreInterface::getProfileDir() return run(args); } -QString CoreInterface::getInstalledDir() -{ - QStringList args("--get-installed-dir"); - return run(args); -} - QString CoreInterface::getArch() { QStringList args("--get-arch"); diff --git a/src/gui/src/CoreInterface.h b/src/gui/src/CoreInterface.h index 55d954c13d..2c6a01abd6 100644 --- a/src/gui/src/CoreInterface.h +++ b/src/gui/src/CoreInterface.h @@ -26,7 +26,6 @@ public: QString getPluginDir(); QString getProfileDir(); - QString getInstalledDir(); QString getArch(); QString run(const QStringList& args, const QString& input = ""); };