source typo fixes pt6

This commit is contained in:
Kunda
2017-03-06 15:48:31 -05:00
committed by Yorik van Havre
parent ec5f19ac4b
commit 3017173c9a
44 changed files with 112 additions and 112 deletions

View File

@@ -1557,7 +1557,7 @@ void Application::runApplication()
processCmdLineFiles();
if (mConfig["RunMode"] == "Cmd") {
// Run the comandline interface
// Run the commandline interface
Interpreter().runCommandLine("FreeCAD Console mode");
}
else if (mConfig["RunMode"] == "Internal") {
@@ -1809,7 +1809,7 @@ void Application::ParseOptions(int ac, char ** av)
//x11.add_options()
// ("display", boost::program_options::value< string >(), "set the X-Server")
// ;
//0000723: improper handling of qt specific comand line arguments
//0000723: improper handling of qt specific command line arguments
std::vector<std::string> args;
bool merge=false;
for (int i=1; i<ac; i++) {
@@ -1873,7 +1873,7 @@ void Application::ParseOptions(int ac, char ** av)
if (vm.count("help")) {
std::stringstream str;
str << mConfig["ExeName"] << endl << endl;
str << "For detailed descripton see http://www.freecadweb.org" << endl<<endl;
str << "For detailed description see http://www.freecadweb.org" << endl<<endl;
str << "Usage: " << mConfig["ExeName"] << " [options] File1 File2 ..." << endl << endl;
str << visible << endl;
throw Base::ProgramInformation(str.str());