Hi,All.
I got the problem when subclassing QListWidgetPrivate.
Qt Code:
  1. #include <private/qlistwidget_p.h>
  2. ...
  3. QItemSelectionModel::SelectionFlags QListWidgetPrivateEx::selectionCommand(const QModelIndex &index,const QEvent *event) const
  4. {
  5. Q_D(const QAbstractItemView);
  6. ...
  7. }
To copy to clipboard, switch view to plain text mode 

compiler(vs2003) shows error.
'd_func': identifier not found, even with argument-dependent lookup
What's the problem?