[Spice-devel] [PATCH spice 1/4] spicec: Add a --title cmdline option (rhbz#662452)
Alon Levy
alevy at redhat.com
Wed Dec 15 09:44:07 PST 2010
ACK
On Wed, Dec 15, 2010 at 04:50:06PM +0100, Hans de Goede wrote:
> ---
> client/application.cpp | 6 ++++++
> 1 files changed, 6 insertions(+), 0 deletions(-)
>
> diff --git a/client/application.cpp b/client/application.cpp
> index 8f41ccf..1bd3ff4 100644
> --- a/client/application.cpp
> +++ b/client/application.cpp
> @@ -2215,6 +2215,7 @@ bool Application::process_cmd_line(int argc, char** argv)
> SPICE_OPT_DISPLAY_COLOR_DEPTH,
> SPICE_OPT_DISABLE_DISPLAY_EFFECTS,
> SPICE_OPT_CONTROLLER,
> + SPICE_OPT_TITLE,
> #ifdef USE_SMARTCARD
> SPICE_OPT_SMARTCARD,
> SPICE_OPT_NOSMARTCARD,
> @@ -2279,6 +2280,8 @@ bool Application::process_cmd_line(int argc, char** argv)
>
> parser.add(SPICE_OPT_CONTROLLER, "controller", "enable external controller");
>
> + parser.add(SPICE_OPT_TITLE, "title", "set window title", "title", true, 't');
> +
> #ifdef USE_SMARTCARD
> parser.add(SPICE_OPT_SMARTCARD, "smartcard", "enable smartcard channel");
> parser.add(SPICE_OPT_NOSMARTCARD, "nosmartcard", "disable smartcard channel");
> @@ -2393,6 +2396,9 @@ bool Application::process_cmd_line(int argc, char** argv)
> }
> _enable_controller = true;
> return true;
> + case SPICE_OPT_TITLE:
> + set_title(val);
> + break;
> #ifdef USE_SMARTCARD
> case SPICE_OPT_SMARTCARD:
> _smartcard_options->enable= true;
> --
> 1.7.3.2
>
> _______________________________________________
> Spice-devel mailing list
> Spice-devel at lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/spice-devel
More information about the Spice-devel
mailing list