Changeset 769 for trunk/src/gui/graphicsview/qgraphicsitem_p.h
- Timestamp:
- Aug 2, 2010, 9:27:30 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/vendor/nokia/qt/4.6.3 (added) merged: 768 /branches/vendor/nokia/qt/current merged: 767 /branches/vendor/nokia/qt/4.6.2 removed
- Property svn:mergeinfo changed
-
trunk/src/gui/graphicsview/qgraphicsitem_p.h
r651 r769 415 415 inline void markParentDirty(bool updateBoundingRect = false); 416 416 417 void setFocusHelper(Qt::FocusReason focusReason, bool climb); 417 void setFocusHelper(Qt::FocusReason focusReason, bool climb, bool focusFromShow); 418 void clearFocusHelper(bool giveFocusToParent); 418 419 void setSubFocus(QGraphicsItem *rootItem = 0); 419 420 void clearSubFocus(QGraphicsItem *rootItem = 0); … … 769 770 { 770 771 QGraphicsItemPrivate *parentp = this; 772 #ifndef QT_NO_GRAPHICSEFFECT 773 if (updateBoundingRect && parentp->graphicsEffect && !parentp->inSetPosHelper) { 774 parentp->notifyInvalidated = 1; 775 static_cast<QGraphicsItemEffectSourcePrivate *>(parentp->graphicsEffect->d_func() 776 ->source->d_func())->invalidateCache(); 777 } 778 #endif 771 779 while (parentp->parent) { 772 780 parentp = parentp->parent->d_ptr.data();
Note:
See TracChangeset
for help on using the changeset viewer.