summaryrefslogtreecommitdiff
path: root/src/group_gui.cpp
diff options
context:
space:
mode:
authorMichael Lutz <michi@icosahedron.de>2021-10-10 17:20:27 +0200
committerMichael Lutz <michi@icosahedron.de>2021-12-16 22:28:32 +0100
commit4fc055d6e97e76faf53ff3f29e36a4a4549bf6e7 (patch)
tree2b9bb9cd8df023fc41163a39d88cfb9f3c9f0f7e /src/group_gui.cpp
parent123c7f99c342aa9eb7ca505f0b49257fc8eee7ff (diff)
downloadopenttd-4fc055d6e97e76faf53ff3f29e36a4a4549bf6e7.tar.xz
Codechange: Align parameter order of command callbacks to command handlers.
Diffstat (limited to 'src/group_gui.cpp')
-rw-r--r--src/group_gui.cpp12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/group_gui.cpp b/src/group_gui.cpp
index f72d9d2d6..e9ded9536 100644
--- a/src/group_gui.cpp
+++ b/src/group_gui.cpp
@@ -1141,13 +1141,14 @@ static inline VehicleGroupWindow *FindVehicleGroupWindow(VehicleType vt, Owner o
/**
* Opens a 'Rename group' window for newly created group.
* @param result Did command succeed?
+ * @param cmd Unused.
* @param tile Unused.
* @param p1 Vehicle type.
* @param p2 Unused.
- * @param cmd Unused.
+ * @param text Unused.
* @see CmdCreateGroup
*/
-void CcCreateGroup(const CommandCost &result, TileIndex tile, uint32 p1, uint32 p2, Commands cmd)
+void CcCreateGroup(const CommandCost &result, Commands cmd, TileIndex tile, uint32 p1, uint32 p2, const std::string &text)
{
if (result.Failed()) return;
assert(p1 <= VEH_AIRCRAFT);
@@ -1159,17 +1160,18 @@ void CcCreateGroup(const CommandCost &result, TileIndex tile, uint32 p1, uint32
/**
* Open rename window after adding a vehicle to a new group via drag and drop.
* @param result Did command succeed?
+ * @param cmd Unused.
* @param tile Unused.
* @param p1 Unused.
* @param p2 Bit 0-19: Vehicle ID.
- * @param cmd Unused.
+ * @param text Unused.
*/
-void CcAddVehicleNewGroup(const CommandCost &result, TileIndex tile, uint32 p1, uint32 p2, Commands cmd)
+void CcAddVehicleNewGroup(const CommandCost &result, Commands cmd, TileIndex tile, uint32 p1, uint32 p2, const std::string &text)
{
if (result.Failed()) return;
assert(Vehicle::IsValidID(GB(p2, 0, 20)));
- CcCreateGroup(result, 0, Vehicle::Get(GB(p2, 0, 20))->type, 0, cmd);
+ CcCreateGroup(result, cmd, 0, Vehicle::Get(GB(p2, 0, 20))->type, 0, text);
}
/**