From 1459488bd3da377008456d43946e0dfbb18d91f7 Mon Sep 17 00:00:00 2001 From: Simon Fels Date: Thu, 26 Jan 2017 07:33:19 +0100 Subject: [PATCH] Drop old and unneeded icon flag for run command --- src/anbox/cmds/run.cpp | 3 --- src/anbox/cmds/run.h | 1 - 2 files changed, 4 deletions(-) diff --git a/src/anbox/cmds/run.cpp b/src/anbox/cmds/run.cpp index aa03481..596c6f9 100644 --- a/src/anbox/cmds/run.cpp +++ b/src/anbox/cmds/run.cpp @@ -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( diff --git a/src/anbox/cmds/run.h b/src/anbox/cmds/run.h index 7e14a18..d0b3ec3 100644 --- a/src/anbox/cmds/run.h +++ b/src/anbox/cmds/run.h @@ -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