Blame view

build2/epsilon-master/escher/src/transparent_view.cpp 228 Bytes
6663b6c9   adorian   projet complet av...
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);
  }