1
0
mirror of git://projects.qi-hardware.com/gmenu2x.git synced 2024-11-22 05:41:33 +02:00

Removed unused methods in LinkApp class

This commit is contained in:
Maarten ter Huurne 2015-04-25 14:09:43 +02:00
parent 7b10f9448b
commit 90a8d90e49
2 changed files with 0 additions and 22 deletions

View File

@ -643,24 +643,6 @@ unique_ptr<Launcher> LinkApp::prepareLaunch(const string &selectedFile) {
move(commandLine), consoleApp));
}
const string &LinkApp::getExec() {
return exec;
}
void LinkApp::setExec(const string &exec) {
this->exec = exec;
edited = true;
}
const string &LinkApp::getParams() {
return params;
}
void LinkApp::setParams(const string &params) {
this->params = params;
edited = true;
}
const string &LinkApp::getManual() {
return manual;
}

View File

@ -72,10 +72,6 @@ public:
bool consoleApp = false;
const std::string &getExec();
void setExec(const std::string &exec);
const std::string &getParams();
void setParams(const std::string &params);
const std::string &getManual();
void setManual(const std::string &manual);
const std::string &getSelectorDir();