1
0
Fork 0

Fix spelling

This commit is contained in:
Rebecca N. Palmer 2015-04-06 10:28:10 +01:00
parent 235693c1c4
commit 659c5b9676
4 changed files with 6 additions and 6 deletions

View file

@ -226,7 +226,7 @@ private:
// Apt, VOR and SUA drawing can be suspended by setting draw_avs to false, without affecting the stored drawing preference state.
void DrawMap(bool draw_avs = true);
// Set whether the display should be draw pixelated (more primatives, but might be closer to real-life)
// Set whether the display should be drawn pixelated (more primitives, but might be closer to real-life)
// or not (in which case it is assumed that pixels are square and can be merged into quads).
bool _pixelated;
@ -251,7 +251,7 @@ private:
// The currently active page
KLN89Page* _activePage;
// And a facility to save the immediately preceeding active page
// And a facility to save the immediately preceding active page
KLN89Page* _lastActivePage;
// Ugly hack. Housekeeping to allow us to temporarily display one page, while remembering which

View file

@ -1820,7 +1820,7 @@ public:
}
/**
* given a current iterator into the values, find the preceeding group marker,
* given a current iterator into the values, find the preceding group marker,
* or return the beginning of the value vector.
*/
OptionValueVec::const_iterator rfindGroup(OptionValueVec::const_iterator pos) const

View file

@ -701,7 +701,7 @@ public:
}
if (index == 0) {
SG_LOG(SG_NAVAID, SG_WARN, "findPreceedingKnownAltitude: no preceeding altitude value found");
SG_LOG(SG_NAVAID, SG_WARN, "findPreceedingKnownAltitude: no preceding altitude value found");
return -1;
}

View file

@ -288,7 +288,7 @@ std::multimap<int, Airport> getAirportsData()
{
std::vector<std::string> lines;
std::multimap<int, Airport> aptData;
SG_LOG(SG_GENERAL, SG_INFO, "Loading aiports informations...");
SG_LOG(SG_GENERAL, SG_INFO, "Loading airports information...");
for(size_t i=0; i < sizeof(_positionsData)/sizeof(*_positionsData); i++) { // _positionsData is provided by positions.hxx
std::vector<std::string> entries = simgear::strutils::split(_positionsData[i], ",");
@ -425,7 +425,7 @@ int usage()
std::cout << " --version - Show version" << std::endl;
std::cout << "" << std::endl;
std::cout << " None of these options are required, you can simply start FGCom without option at all: it works" << std::endl;
std::cout << " For further informations, please visit: http://wiki.flightgear.org/FGCom_3.0" << std::endl;
std::cout << " For further information, please visit: http://wiki.flightgear.org/FGCom_3.0" << std::endl;
std::cout << "" << std::endl;
std::cout << " About silence-threshold:" << std::endl;
std::cout << " This is the limit, in dB, when FGCom consider no voice in your microphone." << std::endl;