Hello,

We have a QTreeView using QT 4.1.3 where we support drag & drop from within the view and have implemented dropEvent(), dragMoveEvent(), dragLeaveEvent() and dragEnterEvent().

In our constructor we are making a call to
setDropIndicatorShown(true);

I am unable to get the drop indicator to display. I've noticed that the document http://doc.trolltech.com/4.1/model-view-dnd.html states that removeRows() must be implemented in our model for the QT::MoveAction to work correctly. We currently do not have an implementation for this function, but our MoveAction works very well. Is this function required for the drop indicator to display?

Any help would be greatly appreciated,

Brad