From 9486146ace12b7c9080cb3370352f25981f81f0e Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Mon, 23 Aug 2004 08:31:55 +0000 Subject: [PATCH] Changed the write help option to just output commandline options. --- examples/osgdem/osgdem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/osgdem/osgdem.cpp b/examples/osgdem/osgdem.cpp index c0764d6bb..58089a17e 100644 --- a/examples/osgdem/osgdem.cpp +++ b/examples/osgdem/osgdem.cpp @@ -327,7 +327,7 @@ int main( int argc, char **argv ) // if user request help write it out to cout. if (arguments.read("-h") || arguments.read("--help")) { - arguments.getApplicationUsage()->write(std::cout); + arguments.getApplicationUsage()->write(std::cout,osg::ApplicationUsage::COMMAND_LINE_OPTION); return 1; }