I don't normally spellcheck source code, but in this case a spelling
mistake is exposed to the interface. (I know that the menu and the
network protocol are not related.)

m.


Index: menu.xml
===================================================================
RCS file: /var/cvs/FlightGear-0.9/data/menu.xml,v
retrieving revision 1.5
diff -u -p -U0 -r1.5 menu.xml
--- menu.xml	18 Nov 2002 21:29:52 -0000	1.5
+++ menu.xml	21 Jun 2003 14:00:00 -0000
@@ -21 +21 @@
-    <seperator/>
+    <separator/>
@@ -88 +88 @@
-    <seperator/>
+    <separator/>
@@ -133 +133 @@
-    <seperator/>
+    <separator/>
@@ -148 +148 @@
-    <seperator/>
+    <separator/>
Index: README.Protocol
===================================================================
RCS file: /var/cvs/FlightGear-0.9/data/Protocol/README.Protocol,v
retrieving revision 1.1
diff -u -p -U0 -r1.1 README.Protocol
--- README.Protocol	3 May 2003 12:19:03 -0000	1.1
+++ README.Protocol	21 Jun 2003 14:00:43 -0000
@@ -5 +5 @@ XML encoded configuration file.
-The definition of the protocol consists of variable seperators, line seperators,
+The definition of the protocol consists of variable separators, line separators,
@@ -26 +26 @@ Each chunck defines:
-The output section also could define the variable seperator and line seperator.
+The output section also could define the variable separator and line separator.
@@ -28 +28 @@ The output section also could define the
-The seperators can be either a control character such as a tab or newline, or a
+The separators can be either a control character such as a tab or newline, or a
@@ -32,2 +32,2 @@ control charachters are:
-<var_seperator>:
-<line_seperator>:
+<var_separator>:
+<line_separator>:
@@ -44 +44 @@ any other charachters just need to be ad
-The var_seperator is placed between each variable, while the line_seperator is
+The var_separator is placed between each variable, while the line_separator is
@@ -58,2 +58,2 @@ following:
-   <line_seperator>newline</line_seperator>
-   <var_seperator>newline</var_seperator>
+   <line_separator>newline</line_separator>
+   <var_separator>newline</var_separator>
Index: f1serial.xml
===================================================================
RCS file: /var/cvs/FlightGear-0.9/data/Protocol/f1serial.xml,v
retrieving revision 1.3
diff -u -p -U0 -r1.3 f1serial.xml
--- f1serial.xml	3 May 2003 09:48:46 -0000	1.3
+++ f1serial.xml	21 Jun 2003 14:00:43 -0000
@@ -8,2 +8,2 @@
-   <line_seperator>newline</line_seperator>
-   <var_seperator>newline</var_seperator>
+   <line_separator>newline</line_separator>
+   <var_separator>newline</var_separator>
Index: generic.cxx
===================================================================
RCS file: /var/cvs/FlightGear-0.9/FlightGear/src/Network/generic.cxx,v
retrieving revision 1.3
diff -u -p -U0 -r1.3 generic.cxx
--- generic.cxx	6 May 2003 23:54:18 -0000	1.3
+++ generic.cxx	21 Jun 2003 14:02:16 -0000
@@ -62,2 +62,2 @@ FGGeneric::FGGeneric(string& config) {
-    var_sep_string = output->getStringValue("var_seperator");
-    line_sep_string = output->getStringValue("line_seperator");
+    var_sep_string = output->getStringValue("var_separator");
+    line_sep_string = output->getStringValue("line_separator");
@@ -65,8 +65,8 @@ FGGeneric::FGGeneric(string& config) {
-	if ( var_seperator == "newline" )
-		var_seperator = '\n';
-	else if ( var_seperator == "formfeed" )
-		var_seperator = '\f';
-	else if ( var_seperator == "carriagereturn" )
-		var_seperator = '\r';
-	else if ( var_seperator == "verticaltab" )
-		var_seperator = '\v';
+	if ( var_separator == "newline" )
+		var_separator = '\n';
+	else if ( var_separator == "formfeed" )
+		var_separator = '\f';
+	else if ( var_separator == "carriagereturn" )
+		var_separator = '\r';
+	else if ( var_separator == "verticaltab" )
+		var_separator = '\v';
@@ -74 +74 @@ FGGeneric::FGGeneric(string& config) {
-		var_seperator = var_sep_string;
+		var_separator = var_sep_string;
@@ -77 +77 @@ FGGeneric::FGGeneric(string& config) {
-		line_seperator = '\n';
+		line_separator = '\n';
@@ -79 +79 @@ FGGeneric::FGGeneric(string& config) {
-		line_seperator = '\f';
+		line_separator = '\f';
@@ -81 +81 @@ FGGeneric::FGGeneric(string& config) {
-		line_seperator = '\r';
+		line_separator = '\r';
@@ -83 +83 @@ FGGeneric::FGGeneric(string& config) {
-		line_seperator = '\v';
+		line_separator = '\v';
@@ -85 +85 @@ FGGeneric::FGGeneric(string& config) {
-		line_seperator = line_sep_string;
+		line_separator = line_sep_string;
@@ -134 +134 @@ bool FGGeneric::gen_message() {
-           generic_sentence += line_seperator;
+           generic_sentence += line_separator;
@@ -162,2 +162,2 @@ bool FGGeneric::gen_message() {
-    /* After each lot of variables has been added, put the line seperator char/string */
-    generic_sentence += line_seperator;
+    /* After each lot of variables has been added, put the line separator char/string */
+    generic_sentence += line_separator;
Index: generic.hxx
===================================================================
RCS file: /var/cvs/FlightGear-0.9/FlightGear/src/Network/generic.hxx,v
retrieving revision 1.2
diff -u -p -U0 -r1.2 generic.hxx
--- generic.hxx	3 May 2003 09:24:47 -0000	1.2
+++ generic.hxx	21 Jun 2003 14:02:16 -0000
@@ -74,2 +74,2 @@ private:
-    string var_seperator;
-    string line_seperator;
+    string var_separator;
+    string line_separator;
_______________________________________________
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel

Reply via email to