summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorManolo Gouy <Manolo>2016-04-23 04:39:14 +0000
committerManolo Gouy <Manolo>2016-04-23 04:39:14 +0000
commitc393fb4fafda7ad3ce2d8187a26f75fa6a874160 (patch)
tree2672eeadcb67f74831bdb8c339992ec3c7fee3a5 /src
parenta56124c20b16e1930f0ec1dc5dc116c845bc4835 (diff)
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
Diffstat (limited to 'src')
-rw-r--r--src/fl_color.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fl_color.cxx b/src/fl_color.cxx
index 71619d8ff..b3dd78825 100644
--- a/src/fl_color.cxx
+++ b/src/fl_color.cxx
@@ -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);
}