1
0
mirror of git://projects.qi-hardware.com/gmenu2x.git synced 2024-07-04 21:05:27 +03:00

Made LinkApp::launch() private.

It was already never called outside the class.
This commit is contained in:
Maarten ter Huurne 2011-12-23 15:51:54 +01:00
parent 4ae4fc675e
commit 0043ea5909

View File

@ -49,6 +49,10 @@ private:
bool wrapper;
bool dontleave;
void launch(
const std::string &selectedFile = "",
const std::string &selectedDir = "");
public:
LinkApp(GMenu2X *gmenu2x, Touchscreen &ts, InputManager &inputMgr,
const char* linkfile);
@ -81,8 +85,6 @@ public:
bool save();
void showManual();
void selector(int startSelection=0, const std::string &selectorDir="");
void launch(const std::string &selectedFile="",
const std::string &selectedDir="");
bool targetExists();
const std::string &getFile() { return file; }