Changeset 11221


Ignore:
Timestamp:
06/30/11 19:01:06 (13 years ago)
Author:
tbretz
Message:
Removed q as shortcut for --quit to avoid confusion with --quiet
Location:
trunk/FACT++/src
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/datalogger.cc

    r11220 r11221  
    26272627        ("cmd",       vars<string>(), "Execute one or more commands at startup")
    26282628        ("exec,e",    vars<string>(), "Execute one or more scrips at startup")
    2629         ("quit,q",    po_switch(),    "Quit after startup");
     2629        ("quit",      po_switch(),    "Quit after startup");
    26302630        ;
    26312631
  • trunk/FACT++/src/dimctrl.cc

    r11218 r11221  
    5555        ("cmd",       vars<string>(), "Execute one or more commands at startup")
    5656        ("exec,e",    vars<string>(), "Execute one or more scrips at startup")
    57         ("quit,q",    po_switch(),    "Quit after startup");
     57        ("quit",      po_switch(),    "Quit after startup");
    5858        ;
    5959
  • trunk/FACT++/src/drivectrl.cc

    r11218 r11221  
    953953        ("cmd",       vars<string>(), "Execute one or more commands at startup")
    954954        ("exec,e",    vars<string>(), "Execute one or more scrips at startup")
    955         ("quit,q",    po_switch(),    "Quit after startup");
     955        ("quit",      po_switch(),    "Quit after startup");
    956956        ;
    957957
  • trunk/FACT++/src/fadctrl.cc

    r11218 r11221  
    17511751        ("cmd",       vars<string>(), "Execute one or more commands at startup")
    17521752        ("exec,e",    vars<string>(), "Execute one or more scrips at startup")
    1753         ("quit,q",    po_switch(),    "Quit after startup");
     1753        ("quit",      po_switch(),    "Quit after startup");
    17541754        ;
    17551755
  • trunk/FACT++/src/ftmctrl.cc

    r11218 r11221  
    19381938        ("cmd",       vars<string>(), "Execute one or more commands at startup")
    19391939        ("exec,e",    vars<string>(), "Execute one or more scrips at startup")
    1940         ("quit,q",    po_switch(),    "Quit after startup");
     1940        ("quit",      po_switch(),    "Quit after startup");
    19411941        ;
    19421942
  • trunk/FACT++/src/scheduler.cc

    r11218 r11221  
    827827        ("cmd",       vars<string>(), "Execute one or more commands at startup")
    828828        ("exec,e",    vars<string>(), "Execute one or more scrips at startup")
    829         ("quit,q",    po_switch(),    "Quit after startup");
     829        ("quit",      po_switch(),    "Quit after startup");
    830830
    831831    po::options_description control("Scheduler options");
Note: See TracChangeset for help on using the changeset viewer.