(svn r14174) -Fix: since now, we are 'losing' things, not 'loosing'
authorsmatz
Mon, 25 Aug 2008 20:10:45 +0000
changeset 10015 2b721243365f
parent 10014 13c9ede0ae49
child 10016 8bfe2fe41d86
(svn r14174) -Fix: since now, we are 'losing' things, not 'loosing'
src/autoreplace_cmd.cpp
src/network/core/udp.cpp
src/newgrf.cpp
src/order_cmd.cpp
src/settings.cpp
--- a/src/autoreplace_cmd.cpp	Mon Aug 25 18:14:19 2008 +0000
+++ b/src/autoreplace_cmd.cpp	Mon Aug 25 20:10:45 2008 +0000
@@ -181,7 +181,7 @@
 	} else {
 		if (!HasBit(available_cargo_types, cargo_type)) return CT_INVALID; // We can't refit the vehicle to carry the cargo we want
 
-		if (!VerifyAutoreplaceRefitForOrders(v, engine_type)) return CT_INVALID; // Some refit orders loose their effect
+		if (!VerifyAutoreplaceRefitForOrders(v, engine_type)) return CT_INVALID; // Some refit orders lose their effect
 
 		/* Do we have to refit the vehicle, or is it already carrying the right cargo? */
 		uint16 *default_capacity = GetCapacityOfArticulatedParts(engine_type, v->type);
--- a/src/network/core/udp.cpp	Mon Aug 25 18:14:19 2008 +0000
+++ b/src/network/core/udp.cpp	Mon Aug 25 20:10:45 2008 +0000
@@ -112,7 +112,7 @@
 	client_len = sizeof(client_addr);
 
 	/* Try to receive anything */
-	SetNonBlocking(this->sock); // Some OSes seem to loose the non-blocking status of the socket
+	SetNonBlocking(this->sock); // Some OSes seem to lose the non-blocking status of the socket
 	nbytes = recvfrom(this->sock, (char*)p.buffer, packet_len, 0, (struct sockaddr *)&client_addr, &client_len);
 
 	/* We got some bytes for the base header of the packet. */
--- a/src/newgrf.cpp	Mon Aug 25 18:14:19 2008 +0000
+++ b/src/newgrf.cpp	Mon Aug 25 20:10:45 2008 +0000
@@ -5737,7 +5737,7 @@
 
 					if (indsp->station_name != STR_NULL) {
 						/* STR_NULL (0) can be set by grf.  It has a meaning regarding assignation of the
-						 * station's name. Don't wont to loose the value, therefor, do not process. */
+						 * station's name. Don't want to lose the value, therefore, do not process. */
 						strid = GetGRFStringID(indsp->grf_prop.grffile->grfid, indsp->station_name);
 						if (strid != STR_UNDEFINED) indsp->station_name = strid;
 					}
--- a/src/order_cmd.cpp	Mon Aug 25 18:14:19 2008 +0000
+++ b/src/order_cmd.cpp	Mon Aug 25 20:10:45 2008 +0000
@@ -1198,7 +1198,7 @@
 /**
  *
  * Backup a vehicle order-list, so you can replace a vehicle
- *  without loosing the order-list
+ *  without losing the order-list
  *
  */
 void BackupVehicleOrders(const Vehicle *v, BackuppedOrders *bak)
--- a/src/settings.cpp	Mon Aug 25 18:14:19 2008 +0000
+++ b/src/settings.cpp	Mon Aug 25 20:10:45 2008 +0000
@@ -1061,7 +1061,7 @@
 
 /** Conversion callback for _gameopt_settings_game.landscape
  * It converts (or try) between old values and the new ones,
- * without loosing initial setting  of the user
+ * without losing initial setting of the user
  * @param value that was read from config file
  * @return the "hopefully" converted value
  */