| 788 | |
| 789 | |
| 790 | CString WizColorToSQL(COLORREF cr) |
| 791 | { |
| 792 | CString str; |
| 793 | str.format("'%s'", |
| 794 | WizColorToString(cr).utf16() |
| 795 | ); |
| 796 | return str; |
| 797 | } |
| 798 | CString WizColorToSQL(const QColor& cr) |
| 799 | { |
| 800 | CString str; |
nothing calls this directly
no test coverage detected