예제 #1
0
파일: View.cpp 프로젝트: mmanley/Antares
void
View::MarkBackgroundDirty()
{
    if (fBackgroundDirty)
        return;
    fBackgroundDirty = true;
    for (View* child = FirstChild(); child; child = child->NextSibling())
        child->MarkBackgroundDirty();
}