transparent_view.cpp 228 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 #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); }