colour -> color

This commit is contained in:
Charles Dang 2016-11-30 06:40:37 +11:00
parent d0dc711403
commit a7daa12b3a
2 changed files with 4 additions and 4 deletions

View file

@ -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)

View file

@ -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);