graph_gui.c
changeset 1093 e8d26c7dc42f
parent 1086 9d00ef71146e
child 1130 236aa7efbe7a
--- a/graph_gui.c	Sat Jan 22 19:41:30 2005 +0000
+++ b/graph_gui.c	Sat Jan 22 20:23:18 2005 +0000
@@ -272,7 +272,7 @@
 	GraphLegendWndProc
 };
 
-static void ShowGraphLegend()
+static void ShowGraphLegend(void)
 {
 	AllocateWindowDescFront(&_graph_legend_desc, 0);
 }
@@ -374,7 +374,7 @@
 };
 
 
-void ShowOperatingProfitGraph()
+void ShowOperatingProfitGraph(void)
 {
 	if (AllocateWindowDescFront(&_operating_profit_desc, 0)) {
 		InvalidateWindow(WC_GRAPH_LEGEND, 0);
@@ -448,7 +448,7 @@
 	IncomeGraphWndProc
 };
 
-void ShowIncomeGraph()
+void ShowIncomeGraph(void)
 {
 	if (AllocateWindowDescFront(&_income_graph_desc, 0)) {
 		InvalidateWindow(WC_GRAPH_LEGEND, 0);
@@ -521,7 +521,7 @@
 	DeliveredCargoGraphWndProc
 };
 
-void ShowDeliveredCargoGraph()
+void ShowDeliveredCargoGraph(void)
 {
 	if (AllocateWindowDescFront(&_delivered_cargo_graph_desc, 0)) {
 		InvalidateWindow(WC_GRAPH_LEGEND, 0);
@@ -597,7 +597,7 @@
 	PerformanceHistoryWndProc
 };
 
-void ShowPerformanceHistoryGraph()
+void ShowPerformanceHistoryGraph(void)
 {
 	if (AllocateWindowDescFront(&_performance_history_desc, 0)) {
 		InvalidateWindow(WC_GRAPH_LEGEND, 0);
@@ -670,7 +670,7 @@
 	CompanyValueGraphWndProc
 };
 
-void ShowCompanyValueGraph()
+void ShowCompanyValueGraph(void)
 {
 	if (AllocateWindowDescFront(&_company_value_graph_desc, 0)) {
 		InvalidateWindow(WC_GRAPH_LEGEND, 0);
@@ -774,7 +774,7 @@
 };
 
 
-void ShowCargoPaymentRates()
+void ShowCargoPaymentRates(void)
 {
 	AllocateWindowDescFront(&_cargo_payment_rates_desc, 0);
 }
@@ -874,7 +874,7 @@
 	CompanyLeagueWndProc
 };
 
-void ShowCompanyLeagueTable()
+void ShowCompanyLeagueTable(void)
 {
 	AllocateWindowDescFront(&_company_league_desc,0);
 }
@@ -1094,7 +1094,7 @@
 	PerformanceRatingDetailWndProc
 };
 
-void ShowPerformanceRatingDetail()
+void ShowPerformanceRatingDetail(void)
 {
 	AllocateWindowDescFront(&_performance_rating_detail_desc, 0);
 }