Changeset - r24723:21d4079f2184
[Not reviewed]
master
0 12 0
SamuXarick - 4 years ago 2021-02-05 10:00:36
43006711+SamuXarick@users.noreply.github.com
Codechange: Apply coding style (#8640)

* Fix: Missing or needed spaces

* Codechange: Remove space

* Codechange: Remove space

* Codechange: More missing spaces

* Codechange: Missing spaces

* Codechange: Remove space

* Codechange: Remove space
3 files changed with 3 insertions and 4 deletions:
0 comments (0 inline, 0 general)
src/group_gui.cpp
Show inline comments
 
@@ -741,8 +741,8 @@ public:
 
						assert(vehgroup.NumVehicles() > 0);
 
						v = vehgroup.vehicles_begin[0];
 
						/*
 
						No VehicleClicked(v) support for now, because don't want
 
						to enable any contextual actions except perhaps clicking/ctrl-clicking to clone orders.
 
						 * No VehicleClicked(v) support for now, because don't want
 
						 * to enable any contextual actions except perhaps clicking/ctrl-clicking to clone orders.
 
						*/
 
						break;
 
					}
src/vehicle_gui.cpp
Show inline comments
 
@@ -1575,7 +1575,6 @@ void BaseVehicleListWindow::DrawVehicleL
 
			}
 

	
 
			case GB_SHARED_ORDERS:
 

	
 
				assert(vehgroup.NumVehicles() > 0);
 

	
 
				for (int i = 0; i < static_cast<int>(vehgroup.NumVehicles()); ++i) {
src/video/sdl2_v.cpp
Show inline comments
 
@@ -524,7 +524,7 @@ static uint ConvertSdlKeycodeIntoMy(SDL_
 
	}
 

	
 
	/* check scancode for BACKQUOTE key, because we want the key left
 
	   of "1", not anything else (on non-US keyboards) */
 
	 * of "1", not anything else (on non-US keyboards) */
 
	SDL_Scancode sc = SDL_GetScancodeFromKey(kc);
 
	if (sc == SDL_SCANCODE_GRAVE) key = WKC_BACKQUOTE;
 

	
0 comments (0 inline, 0 general)