mirror of
git://projects.qi-hardware.com/gmenu2x.git
synced 2024-11-17 21:10:39 +02:00
linkapp.cpp: remove dead/useless code
This commit is contained in:
parent
1a1f891a4d
commit
a7f0fef059
@ -141,24 +141,6 @@ LinkApp::LinkApp(GMenu2X *gmenu2x_, const char* linkfile)
|
|||||||
iconPath = this->icon;
|
iconPath = this->icon;
|
||||||
updateSurfaces();
|
updateSurfaces();
|
||||||
|
|
||||||
} else if (!strncmp(key, "Exec", lkey)) {
|
|
||||||
string tmp = buf;
|
|
||||||
pos = tmp.find(' ');
|
|
||||||
exec = tmp.substr(0, pos);
|
|
||||||
|
|
||||||
if (pos != tmp.npos) {
|
|
||||||
unsigned int i;
|
|
||||||
|
|
||||||
params = tmp.substr(pos + 1);
|
|
||||||
|
|
||||||
for (i = 0; i < sizeof(tokens) / sizeof(tokens[0]); i++) {
|
|
||||||
if (params.find(tokens[i]) != params.npos) {
|
|
||||||
selectordir = CARD_ROOT;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -554,11 +536,7 @@ void LinkApp::selector(int startSelection, const string &selectorDir) {
|
|||||||
void LinkApp::launch(const string &selectedFile) {
|
void LinkApp::launch(const string &selectedFile) {
|
||||||
save();
|
save();
|
||||||
|
|
||||||
if (isOpk()) {
|
if (!isOpk()) {
|
||||||
#ifdef HAVE_LIBOPK
|
|
||||||
exec = "/usr/bin/opkrun -m " + metadata + " " + opkFile;
|
|
||||||
#endif
|
|
||||||
} else {
|
|
||||||
//Set correct working directory
|
//Set correct working directory
|
||||||
string::size_type pos = exec.rfind("/");
|
string::size_type pos = exec.rfind("/");
|
||||||
if (pos != string::npos) {
|
if (pos != string::npos) {
|
||||||
@ -584,8 +562,6 @@ void LinkApp::launch(const string &selectedFile) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
INFO("Executing '%s' (%s %s)\n", title.c_str(), exec.c_str(), params.c_str());
|
|
||||||
|
|
||||||
if (gmenu2x->confInt["outputLogs"]
|
if (gmenu2x->confInt["outputLogs"]
|
||||||
#if defined(PLATFORM_A320) || defined(PLATFORM_GCW0)
|
#if defined(PLATFORM_A320) || defined(PLATFORM_GCW0)
|
||||||
&& !consoleApp
|
&& !consoleApp
|
||||||
@ -644,6 +620,7 @@ void LinkApp::launch(const string &selectedFile) {
|
|||||||
NULL);
|
NULL);
|
||||||
#endif
|
#endif
|
||||||
} else {
|
} else {
|
||||||
|
INFO("Executing '%s' (%s %s)\n", title.c_str(), exec.c_str(), params.c_str());
|
||||||
execlp(exec.c_str(), exec.c_str(),
|
execlp(exec.c_str(), exec.c_str(),
|
||||||
!params.empty() ? params.c_str() : NULL,
|
!params.empty() ? params.c_str() : NULL,
|
||||||
NULL);
|
NULL);
|
||||||
|
Loading…
Reference in New Issue
Block a user