From c71e3548d7fb60f9d4560bfccbfb088da8909ec1 Mon Sep 17 00:00:00 2001
From: smatz <smatz@openttd.org>
Date: Sun, 15 Nov 2009 18:21:17 +0000
Subject: [PATCH] (svn r18102) -Codechange: simplify
 Company::Get(this->window_number)->index to just this->window_number

---
 src/company_gui.cpp | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/src/company_gui.cpp b/src/company_gui.cpp
index f724870102..5ac2d06dcf 100644
--- a/src/company_gui.cpp
+++ b/src/company_gui.cpp
@@ -303,11 +303,10 @@ struct CompanyFinancesWindow : Window {
 
 	virtual void SetStringParameters(int widget) const
 	{
-		const Company *c = Company::Get((CompanyID)this->window_number);
 		switch (widget) {
 			case CFW_CAPTION:
-				SetDParam(0, c->index);
-				SetDParam(1, c->index);
+				SetDParam(0, (CompanyID)this->window_number);
+				SetDParam(1, (CompanyID)this->window_number);
 				break;
 
 			case CFW_MAXLOAN_VALUE:
@@ -1688,9 +1687,8 @@ struct CompanyWindow : Window
 	virtual void SetStringParameters(int widget) const
 	{
 		if (widget == CW_WIDGET_CAPTION) {
-			const Company *c = Company::Get((CompanyID)this->window_number);
-			SetDParam(0, c->index);
-			SetDParam(1, c->index);
+			SetDParam(0, (CompanyID)this->window_number);
+			SetDParam(1, (CompanyID)this->window_number);
 		}
 	}