Ok, the "real" problem was the signal-slot binding. If i directly use
Qt Code:
  1. connect(v->selectionModel(), SIGNAL(currentChanged(const QModelIndex& , const QModelIndex&)), this, SLOT(changed(const QModelIndex& , const QModelIndex&)), Qt::QueuedConnection);
To copy to clipboard, switch view to plain text mode 
all works as expected without the additional signal.