From 3d9ed0a10f975d8d1f779186cc8db1200224858b Mon Sep 17 00:00:00 2001 From: mfranz Date: Sat, 5 May 2007 09:57:17 +0000 Subject: [PATCH] revert last: keep --props option because of option architecture --- docs-mini/README.xmlpanel | 2 +- src/Main/options.cxx | 7 ------- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/docs-mini/README.xmlpanel b/docs-mini/README.xmlpanel index 270b885b3..960dd2e63 100644 --- a/docs-mini/README.xmlpanel +++ b/docs-mini/README.xmlpanel @@ -44,7 +44,7 @@ a running copy of FG allows for switching components on the fly, a positive boon for panel authors. To see the property tree start FG with the following command line: -fgfs --telnet=socket,bi,5,localhost,5500,tcp +fgfs --props=socket,bi,5,localhost,5500,tcp Then use telnet to connect to localhost on port 5500. You can browse the tree as you would a filesystem. diff --git a/src/Main/options.cxx b/src/Main/options.cxx index 3ac4f869f..06b09583e 100644 --- a/src/Main/options.cxx +++ b/src/Main/options.cxx @@ -527,13 +527,6 @@ parse_fov( const string& arg ) { static bool add_channel( const string& type, const string& channel_str ) { - if (type == "props") - SG_LOG(SG_GENERAL, SG_ALERT, "\n" - "****************************************************************\n" - "* The --props option is obsolete and will be removed in future *\n" - "* releases. Please use --telnet instead with the same syntax. *\n" - "****************************************************************"); - SG_LOG(SG_GENERAL, SG_INFO, "Channel string = " << channel_str ); globals->get_channel_options_list()->push_back( type + "," + channel_str ); return true;