Set the brush color to the given RGB values.
| 629 | |
| 630 | // Set the brush color to the given RGB values. |
| 631 | void ScrollView::Brush(int red, int green, int blue) { |
| 632 | SendMsg("brush(%d,%d,%d)", red, green, blue); |
| 633 | } |
| 634 | |
| 635 | // Set the brush color to the given RGB values. |
| 636 | void ScrollView::Brush(int red, int green, int blue, int alpha) { |
no outgoing calls
no test coverage detected