| 119 | } |
| 120 | |
| 121 | QVariant CompletionTreeItem::data(const QModelIndex& index, int role, const CodeCompletionModel* model) const |
| 122 | { |
| 123 | Q_UNUSED(index) |
| 124 | Q_UNUSED(model) |
| 125 | if (role == Qt::DisplayRole) |
| 126 | return i18n("not implemented"); |
| 127 | return QVariant(); |
| 128 | } |
| 129 | |
| 130 | int CompletionTreeItem::inheritanceDepth() const |
| 131 | { |