Remove Doxygen warning. Doxygen does not know that unsigned and unsigned int are the same type.

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11680 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Manolo Gouy
2016-04-23 04:39:14 +00:00
parent a56124c20b
commit c393fb4faf
+1 -1
View File
@@ -67,7 +67,7 @@ void Fl::set_color(Fl_Color i, uchar red, uchar green, uchar blue) {
}
void Fl::set_color(Fl_Color i, unsigned int c)
void Fl::set_color(Fl_Color i, unsigned c)
{
Fl_Graphics_Driver::default_driver().set_color(i, c);
}