transparent_view.cpp 228 Bytes
#include <escher/transparent_view.h>

void TransparentView::markRectAsDirty(KDRect rect) {
  if (m_superview) {
    m_superview->markRectAsDirty(KDRect(rect.translatedBy(m_frame.origin())));
  }
  View::markRectAsDirty(rect);
}