summaryrefslogtreecommitdiff
path: root/src/graph_gui.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2011-11-19 22:15:44 +0000
committerrubidium <rubidium@openttd.org>2011-11-19 22:15:44 +0000
commitb8866be0939c6b51372f92027d32555ab95b97eb (patch)
treea2e52e85bea9791527651e6dd04fca37e673a738 /src/graph_gui.cpp
parentd86e6b6162017976e50a4632df10bb286f448d96 (diff)
downloadopenttd-b8866be0939c6b51372f92027d32555ab95b97eb.tar.xz
(svn r23269) -Codechange: rename some control/string codes/IDs to be more consistent
Diffstat (limited to 'src/graph_gui.cpp')
-rw-r--r--src/graph_gui.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/graph_gui.cpp b/src/graph_gui.cpp
index 8ead12ecc..65f688c5d 100644
--- a/src/graph_gui.cpp
+++ b/src/graph_gui.cpp
@@ -623,7 +623,7 @@ public:
struct OperatingProfitGraphWindow : BaseGraphWindow {
OperatingProfitGraphWindow(const WindowDesc *desc, WindowNumber window_number) :
- BaseGraphWindow(BGW_GRAPH, STR_JUST_CURRCOMPACT)
+ BaseGraphWindow(BGW_GRAPH, STR_JUST_CURRENCY_SHORT)
{
this->InitializeWindow(desc, window_number);
}
@@ -673,7 +673,7 @@ void ShowOperatingProfitGraph()
struct IncomeGraphWindow : BaseGraphWindow {
IncomeGraphWindow(const WindowDesc *desc, WindowNumber window_number) :
- BaseGraphWindow(BGW_GRAPH, STR_JUST_CURRCOMPACT)
+ BaseGraphWindow(BGW_GRAPH, STR_JUST_CURRENCY_SHORT)
{
this->InitializeWindow(desc, window_number);
}
@@ -834,7 +834,7 @@ void ShowPerformanceHistoryGraph()
struct CompanyValueGraphWindow : BaseGraphWindow {
CompanyValueGraphWindow(const WindowDesc *desc, WindowNumber window_number) :
- BaseGraphWindow(BGW_GRAPH, STR_JUST_CURRCOMPACT)
+ BaseGraphWindow(BGW_GRAPH, STR_JUST_CURRENCY_SHORT)
{
this->InitializeWindow(desc, window_number);
}
@@ -895,7 +895,7 @@ enum CargoPaymentRatesWidgets {
struct PaymentRatesGraphWindow : BaseGraphWindow {
bool first_init; ///< This value is true until the first initialization of the window has finished.
PaymentRatesGraphWindow(const WindowDesc *desc, WindowNumber window_number) :
- BaseGraphWindow(CPW_GRAPH, STR_JUST_CURRCOMPACT)
+ BaseGraphWindow(CPW_GRAPH, STR_JUST_CURRENCY_SHORT)
{
this->first_init = true;
this->num_on_x_axis = 20;