================ CSyntaxRichEditCtrl::SetStringColor ================ */
| 430 | ================ |
| 431 | */ |
| 432 | void CSyntaxRichEditCtrl::SetStringColor( const COLORREF color, const COLORREF altColor ) { |
| 433 | stringColor[0] = color; |
| 434 | if ( altColor == -1 ) { |
| 435 | stringColor[1] = color; |
| 436 | } else { |
| 437 | stringColor[1] = altColor; |
| 438 | } |
| 439 | } |
| 440 | |
| 441 | /* |
| 442 | ================ |