colour -> color
This commit is contained in:
parent
d0dc711403
commit
a7daa12b3a
2 changed files with 4 additions and 4 deletions
|
@ -480,9 +480,9 @@ void widget::set_debug_border_mode(const unsigned debug_border_mode)
|
|||
debug_border_mode_ = debug_border_mode;
|
||||
}
|
||||
|
||||
void widget::set_debug_border_color(const color_t debug_border_colour)
|
||||
void widget::set_debug_border_color(const color_t debug_border_color)
|
||||
{
|
||||
debug_border_color_ = debug_border_colour;
|
||||
debug_border_color_ = debug_border_color;
|
||||
}
|
||||
|
||||
void widget::draw_debug_border(surface& frame_buffer)
|
||||
|
|
|
@ -667,7 +667,7 @@ public:
|
|||
|
||||
void set_debug_border_mode(const unsigned debug_border_mode);
|
||||
|
||||
void set_debug_border_color(const color_t debug_border_colour);
|
||||
void set_debug_border_color(const color_t debug_border_color);
|
||||
|
||||
/*** *** *** *** *** *** *** *** Members. *** *** *** *** *** *** *** ***/
|
||||
|
||||
|
@ -705,7 +705,7 @@ private:
|
|||
*/
|
||||
unsigned debug_border_mode_;
|
||||
|
||||
/** The colour for the debug border. */
|
||||
/** The color for the debug border. */
|
||||
color_t debug_border_color_;
|
||||
|
||||
void draw_debug_border(surface& frame_buffer);
|
||||
|
|
Loading…
Add table
Reference in a new issue