blob: 10a6e1dc4b50c9dc83a61e79a8853b0ca7f44d31 (
plain)
1
2
3
4
5
|
let cCAMLtoTKpaletteType : paletteType -> tkArgs = function
| `Gray (foo) -> TkToken (string_of_int foo)
| `Rgb (r,v,b) -> TkToken (string_of_int r ^ "/" ^
string_of_int v ^ "/" ^
string_of_int b)
|