changeset 17066:21cc53f6368d draft

(svn r21803) -Cleanup: Remove unnecessary semicolons.
author terkhen <terkhen@openttd.org>
date Sat, 15 Jan 2011 15:36:58 +0000
parents 421d71eb2bd9
children bd273a679b3d
files src/aircraft_cmd.cpp src/airport.cpp src/build_vehicle_gui.cpp src/company_cmd.cpp src/depot_gui.cpp src/genworld_gui.cpp src/main_gui.cpp src/misc_gui.cpp src/pathfinder/yapf/yapf_road.cpp src/rail_gui.cpp src/saveload/oldloader_sl.cpp src/widget_type.h src/window_gui.h
diffstat 13 files changed, 15 insertions(+), 15 deletions(-) [+]
line wrap: on
line diff
--- a/src/aircraft_cmd.cpp
+++ b/src/aircraft_cmd.cpp
@@ -1664,7 +1664,7 @@
 				break;
 			}
 			current = current->next;
-		};
+		}
 
 		/* if the block to be checked is in the next position, then exclude that from
 		 * checking, because it has been set by the airplane before */
--- a/src/airport.cpp
+++ b/src/airport.cpp
@@ -129,7 +129,7 @@
 			AirportFTA *next = current->next;
 			free(current);
 			current = next;
-		};
+		}
 	}
 	free(layout);
 }
--- a/src/build_vehicle_gui.cpp
+++ b/src/build_vehicle_gui.cpp
@@ -609,7 +609,7 @@
 		SetDParam(1, rvi->pow_wag_weight);
 		DrawString(left, right, y, STR_PURCHASE_INFO_PWAGPOWER_PWAGWEIGHT);
 		y += FONT_HEIGHT_NORMAL;
-	};
+	}
 
 	return y;
 }
--- a/src/company_cmd.cpp
+++ b/src/company_cmd.cpp
@@ -437,7 +437,7 @@
 				Swap(colours[j - 1], colours[j]);
 			}
 		}
-	};
+	}
 
 	/* Move the colours that look similar to each company's colour to the side */
 	Company *c;
--- a/src/depot_gui.cpp
+++ b/src/depot_gui.cpp
@@ -849,7 +849,7 @@
 		this->sel = INVALID_VEHICLE;
 		this->vehicle_over = INVALID_VEHICLE;
 		this->SetWidgetDirty(DEPOT_WIDGET_MATRIX);
-	};
+	}
 
 	virtual void OnMouseDrag(Point pt, int widget)
 	{
--- a/src/genworld_gui.cpp
+++ b/src/genworld_gui.cpp
@@ -755,7 +755,7 @@
 					this->widget_id = widget;
 					SetDParam(0, _settings_newgame.game_creation.custom_town_number);
 					ShowQueryString(STR_JUST_INT, STR_MAPGEN_NUMBER_OF_TOWNS, 5, 50, this, CS_NUMERAL, QSF_NONE);
-				};
+				}
 				IConsoleSetSetting("difficulty.number_towns", index);
 				break;
 
@@ -776,7 +776,7 @@
 					this->widget_id = widget;
 					SetDParam(0, _settings_newgame.game_creation.custom_sea_level);
 					ShowQueryString(STR_JUST_INT, STR_MAPGEN_QUANTITY_OF_SEA_LAKES, 3, 50, this, CS_NUMERAL, QSF_NONE);
-				};
+				}
 				GameMode old_gm = _game_mode;
 				_game_mode = GM_MENU;
 				IConsoleSetSetting("difficulty.quantity_sea_lakes", index);
--- a/src/main_gui.cpp
+++ b/src/main_gui.cpp
@@ -424,7 +424,7 @@
 		this->viewport->scrollpos_y += ScaleByZoom(delta.y, vp->zoom);
 		this->viewport->dest_scrollpos_x = this->viewport->scrollpos_x;
 		this->viewport->dest_scrollpos_y = this->viewport->scrollpos_y;
-	};
+	}
 
 	virtual void OnMouseWheel(int wheel)
 	{
--- a/src/misc_gui.cpp
+++ b/src/misc_gui.cpp
@@ -721,7 +721,7 @@
 		switch (wl) {
 			case WL_WARNING: IConsolePrint(CC_WARNING, buf); break;
 			default:         IConsoleError(buf); break;
-		};
+		}
 	}
 
 	bool no_timeout = wl == WL_CRITICAL;
--- a/src/pathfinder/yapf/yapf_road.cpp
+++ b/src/pathfinder/yapf/yapf_road.cpp
@@ -151,7 +151,7 @@
 			tile = F.m_new_tile;
 			trackdir = new_td;
 			if (tiles > MAX_MAP_SIZE) break;
-		};
+		}
 
 		/* save end of segment back to the node */
 		n.m_segment_last_tile = tile;
--- a/src/rail_gui.cpp
+++ b/src/rail_gui.cpp
@@ -1545,7 +1545,7 @@
 	{
 		this->InitNested(desc, TRANSPORT_RAIL);
 		this->OnInvalidateData();
-	};
+	}
 
 	virtual void SetStringParameters(int widget) const
 	{
@@ -1782,7 +1782,7 @@
 
 		matrix->SetCount(_waypoint_count);
 		matrix->SetClicked(_cur_waypoint_type);
-	};
+	}
 
 	virtual void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize)
 	{
--- a/src/saveload/oldloader_sl.cpp
+++ b/src/saveload/oldloader_sl.cpp
@@ -1530,7 +1530,7 @@
 						DEBUG(oldloader, 3, "TTDPatch game using GRF file with GRFID %0X", BSWAP32(c->ident.grfid));
 					}
 					len -= 5;
-				};
+				}
 
 				/* Append static NewGRF configuration */
 				AppendStaticGRFConfigs(&_grfconfig);
--- a/src/widget_type.h
+++ b/src/widget_type.h
@@ -145,7 +145,7 @@
 		this->padding_right = right;
 		this->padding_bottom = bottom;
 		this->padding_left = left;
-	};
+	}
 
 	FORCEINLINE uint GetHorizontalStepSize(SizingType sizing) const;
 	FORCEINLINE uint GetVerticalStepSize(SizingType sizing) const;
--- a/src/window_gui.h
+++ b/src/window_gui.h
@@ -741,7 +741,7 @@
 	PickerWindowBase(Window *parent) : Window()
 	{
 		this->parent = parent;
-	};
+	}
 
 	virtual ~PickerWindowBase();
 };