Drop old and unneeded icon flag for run command

This commit is contained in:
Simon Fels 2017-01-26 07:33:19 +01:00
commit 1459488bd3
2 changed files with 0 additions and 4 deletions

View file

@ -81,9 +81,6 @@ anbox::cmds::Run::Run(const BusFactory &bus_factory)
flag(cli::make_flag(cli::Name{"desktop_file_hint"},
cli::Description{"Desktop file hint for QtMir/Unity8"},
desktop_file_hint_));
flag(cli::make_flag(cli::Name{"icon"},
cli::Description{"Icon of the application to run"},
icon_));
action([this](const cli::Command::Context &) {
auto trap = core::posix::trap_signals_for_process(

View file

@ -39,7 +39,6 @@ class Run : public cli::CommandWithFlagsAndAction {
private:
BusFactory bus_factory_;
std::string desktop_file_hint_;
std::string icon_;
};
} // namespace cmds
} // namespace anbox