| 581 | } |
| 582 | |
| 583 | CString WizColorToString(COLORREF cr) |
| 584 | { |
| 585 | return WizIntToHexEx(GetRValue(cr), 2, FALSE) |
| 586 | + WizIntToHexEx(GetGValue(cr), 2, FALSE) |
| 587 | + WizIntToHexEx(GetBValue(cr), 2, FALSE); |
| 588 | } |
| 589 | CString WizColorToString(const QColor& cr) |
| 590 | { |
| 591 | return WizIntToHexEx(cr.red() , 2, FALSE) |
no test coverage detected