mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-03-09 07:29:44 +00:00
(svn r7353) -Codechange: constify Window* in IsWindowWidget(Lowered|Hidden|Disabled)
This commit is contained in:
parent
c02e39945e
commit
05559bcdcd
6
window.h
6
window.h
@ -682,7 +682,7 @@ static inline bool IsWidgetDisabled(const Widget *wi)
|
|||||||
* @param widget_index : index of this widget in the window
|
* @param widget_index : index of this widget in the window
|
||||||
* @return status of the widget ie: disabled = true, enabled = false
|
* @return status of the widget ie: disabled = true, enabled = false
|
||||||
*/
|
*/
|
||||||
static inline bool IsWindowWidgetDisabled(Window *w, byte widget_index)
|
static inline bool IsWindowWidgetDisabled(const Window *w, byte widget_index)
|
||||||
{
|
{
|
||||||
assert(widget_index < w->widget_count);
|
assert(widget_index < w->widget_count);
|
||||||
return IsWidgetDisabled(&w->widget[widget_index]);
|
return IsWidgetDisabled(&w->widget[widget_index]);
|
||||||
@ -739,7 +739,7 @@ static inline bool IsWidgetHidden(const Widget *wi)
|
|||||||
* @param widget_index : index of this widget in the window
|
* @param widget_index : index of this widget in the window
|
||||||
* @return status of the widget ie: hidden = true, visible = false
|
* @return status of the widget ie: hidden = true, visible = false
|
||||||
*/
|
*/
|
||||||
static inline bool IsWindowWidgetHidden(Window *w, byte widget_index)
|
static inline bool IsWindowWidgetHidden(const Window *w, byte widget_index)
|
||||||
{
|
{
|
||||||
assert(widget_index < w->widget_count);
|
assert(widget_index < w->widget_count);
|
||||||
return IsWidgetHidden(&w->widget[widget_index]);
|
return IsWidgetHidden(&w->widget[widget_index]);
|
||||||
@ -794,7 +794,7 @@ static inline void RaiseWindowWidget(Window *w, byte widget_index)
|
|||||||
* @param widget_index : index of this widget in the window
|
* @param widget_index : index of this widget in the window
|
||||||
* @return status of the widget ie: lowered = true, raised= false
|
* @return status of the widget ie: lowered = true, raised= false
|
||||||
*/
|
*/
|
||||||
static inline bool IsWindowWidgetLowered(Window *w, byte widget_index)
|
static inline bool IsWindowWidgetLowered(const Window *w, byte widget_index)
|
||||||
{
|
{
|
||||||
assert(widget_index < w->widget_count);
|
assert(widget_index < w->widget_count);
|
||||||
return HASBIT(w->widget[widget_index].display_flags, WIDG_LOWERED);
|
return HASBIT(w->widget[widget_index].display_flags, WIDG_LOWERED);
|
||||||
|
Loading…
Reference in New Issue
Block a user