void DrawingPolygonItem::setBrush(const QBrush& brush)
{
	setBrushColor(brush.color());
}
Exemple #2
0
// 주 글꼴 색 설정
// - 반환 값 (BOOL)
//		TRUE: 설정 실패 (m_FontBrush가 가리키는 객체 없음)
//		FALSE: 설정 성공
BOOL CText::setFontColor(IN const Color& fontColor) {

	return setBrushColor(m_FontBrush, fontColor);
}