From 7c9e393406a67d7f7ae65a2453ad3ccfe9cadddf Mon Sep 17 00:00:00 2001 From: Daniel Juyung Seo Date: Wed, 12 Feb 2014 21:43:19 +0900 Subject: [PATCH] main: disabled command line option 'tizen' and 'mobile' now. I will not enable them for v0.1, they will be enabled in v0.2. --- src/bin/main.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/bin/main.c b/src/bin/main.c index 3b93fac..4af9bbd 100644 --- a/src/bin/main.c +++ b/src/bin/main.c @@ -19,15 +19,15 @@ static const Ecore_Getopt options = { { ECORE_GETOPT_STORE_STR('t', "theme", "Set the theme to load and parse."), - ECORE_GETOPT_STORE_TRUE('m', "mobile", "Set the mobile view."), + //ECORE_GETOPT_STORE_TRUE('m', "mobile", "Set the mobile view."), // TODO: enable in v0.2 ECORE_GETOPT_STORE_STR('s', "screensize", "Set the screen size in " "WIDTHxHEIGHT format. (300x500)"), ECORE_GETOPT_STORE_TRUE('F', "fullscreen", "Go into the fullscreen mode from start."), - ECORE_GETOPT_STORE_TRUE('T', "tizen", + /*ECORE_GETOPT_STORE_TRUE('T', "tizen", "Run as a Tizen platform mode. Use Tizen " "internal styles. This enables mobile mode " - "automatically."), + "automatically."),*/ // TODO: enable in v0.2 ECORE_GETOPT_STORE_STR('w', "widget", "Set the widget to launch from command line."), ECORE_GETOPT_VERSION ('V', "version"), @@ -57,10 +57,10 @@ elm_main(int argc, char **argv) Ecore_Getopt_Value values[] = { ECORE_GETOPT_VALUE_STR(theme), - ECORE_GETOPT_VALUE_BOOL(mobile_version), + //ECORE_GETOPT_VALUE_BOOL(mobile_version), // TODO: enable in v0.2 ECORE_GETOPT_VALUE_STR(screen_size), ECORE_GETOPT_VALUE_BOOL(fullscreen), - ECORE_GETOPT_VALUE_BOOL(tizen), + //ECORE_GETOPT_VALUE_BOOL(tizen), // TODO: enable in v0.2 ECORE_GETOPT_VALUE_STR(widget), ECORE_GETOPT_VALUE_BOOL(quit_option), ECORE_GETOPT_VALUE_BOOL(quit_option),