Hi. I'm reading official Qt documentation and I can't understant piece of code:
Qt Code:
  1. //! [quoting mymodel_f]
  2. Qt::ItemFlags MyModel::flags(const QModelIndex &index) const
  3. {
  4. return Qt::ItemIsEditable | QAbstractTableModel::flags(index);
  5. }
  6. //! [quoting mymodel_f]
To copy to clipboard, switch view to plain text mode 

Qt Code:
  1. Qt::ItemIsEditable | QAbstractTableModel::flags(index);
To copy to clipboard, switch view to plain text mode 

Why we can't just return Qt::ItemIsEditable?