diff options
author | rubidium <rubidium@openttd.org> | 2007-05-02 09:39:11 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2007-05-02 09:39:11 +0000 |
commit | 951c74806f9e261e90cbd0eff2dd11172ad94b35 (patch) | |
tree | 9b8a7fbf387498c62c9649ba43171bc6f882dc3d /src/ship.h | |
parent | dce7dcb6649dca7a05f5abc5b006822a05e06056 (diff) | |
download | openttd-951c74806f9e261e90cbd0eff2dd11172ad94b35.tar.xz |
(svn r9765) -Codechange: constify some class functions.
Diffstat (limited to 'src/ship.h')
-rw-r--r-- | src/ship.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ship.h b/src/ship.h index 0d4e324ae..fe5598230 100644 --- a/src/ship.h +++ b/src/ship.h @@ -39,11 +39,11 @@ struct Ship: public Vehicle { /** We want to 'destruct' the right class. */ virtual ~Ship() {} - const char *GetTypeString() { return "ship"; } + const char *GetTypeString() const { return "ship"; } void MarkDirty(); void UpdateDeltaXY(Direction direction); - ExpensesType GetExpenseType(bool income) { return income ? EXPENSES_SHIP_INC : EXPENSES_SHIP_RUN; } - WindowClass GetVehicleListWindowClass() { return WC_SHIPS_LIST; } + ExpensesType GetExpenseType(bool income) const { return income ? EXPENSES_SHIP_INC : EXPENSES_SHIP_RUN; } + WindowClass GetVehicleListWindowClass() const { return WC_SHIPS_LIST; } }; #endif /* SHIP_H */ |