summaryrefslogtreecommitdiff
path: root/src/graph_gui.cpp
diff options
context:
space:
mode:
authoryexo <yexo@openttd.org>2010-08-19 11:33:15 +0000
committeryexo <yexo@openttd.org>2010-08-19 11:33:15 +0000
commit44ba57bb7979fa40a043cca51f2991dca5c880a7 (patch)
tree0057a6b035067820870a1dc75fcb5c4eb57125f0 /src/graph_gui.cpp
parentfa0b8573dcba58a85e9d6792c1afa7af5f7503f2 (diff)
downloadopenttd-44ba57bb7979fa40a043cca51f2991dca5c880a7.tar.xz
(svn r20555) -Fix [FS#4053]: wrong tooltip for the company select button in the AI debug and performance rating windows
Diffstat (limited to 'src/graph_gui.cpp')
-rw-r--r--src/graph_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/graph_gui.cpp b/src/graph_gui.cpp
index 3dfdd6c2a..066147c05 100644
--- a/src/graph_gui.cpp
+++ b/src/graph_gui.cpp
@@ -1587,7 +1587,7 @@ static NWidgetBase *MakeCompanyButtonRows(int *biggest_index)
NWidgetBackground *panel = new NWidgetBackground(WWT_PANEL, COLOUR_GREY, widnum);
panel->SetMinimalSize(sprite_size.width, sprite_size.height);
panel->SetFill(1, 0);
- panel->SetDataTip(0x0, STR_GRAPH_KEY_COMPANY_SELECTION_TOOLTIP);
+ panel->SetDataTip(0x0, STR_PERFORMANCE_DETAIL_SELECT_COMPANY_TOOLTIP);
hor->Add(panel);
hor_length++;
}