summaryrefslogtreecommitdiff
path: root/main_gui.c
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2006-08-22 16:38:50 +0000
committertruelight <truelight@openttd.org>2006-08-22 16:38:50 +0000
commitb34d77ca3fe5236378e116eba3e4f6402eb89609 (patch)
treedc441269644e5f08879ff06482e03b5deb80d491 /main_gui.c
parentc0f352670ac91977145a3a9df44e5cabfb9c49b6 (diff)
downloadopenttd-b34d77ca3fe5236378e116eba3e4f6402eb89609.tar.xz
(svn r6050) -Codechange: mass-renamed SignStruct -> Sign and ss -> si. Now functions and variables all match eachother
Diffstat (limited to 'main_gui.c')
-rw-r--r--main_gui.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/main_gui.c b/main_gui.c
index e1b9393da..3f4c5f216 100644
--- a/main_gui.c
+++ b/main_gui.c
@@ -346,11 +346,11 @@ void ShowNetworkNeedCompanyPassword(void)
#endif /* ENABLE_NETWORK */
-void ShowRenameSignWindow(const SignStruct *ss)
+void ShowRenameSignWindow(const Sign *si)
{
- _rename_id = ss->index;
+ _rename_id = si->index;
_rename_what = 0;
- ShowQueryString(ss->str, STR_280B_EDIT_SIGN_TEXT, 30, 180, 1, 0, CS_ALPHANUMERAL);
+ ShowQueryString(si->str, STR_280B_EDIT_SIGN_TEXT, 30, 180, 1, 0, CS_ALPHANUMERAL);
}
void ShowRenameWaypointWindow(const Waypoint *wp)