PDA

View Full Version : QAbstractItemView::InternalMove



youkai
14th August 2008, 17:45
Hi!

Which (protected) function do I have to overload to catch the internal move operation in a QListWidget? I want to do something directly after the move operation...

What not works:


virtual void dropEvent ( QDropEvent * event )
virtual bool dropMimeData ( int index, const QMimeData * data, Qt::DropAction action )


These functions seem not to be called.

Bye

youkai
14th August 2008, 17:54
Uh-Oh. :) It was my fault. "dropEvent" works just fine for me. :D

Bye