| 259 | } |
| 260 | |
| 261 | QString ExpandingWidgetModel::partialExpandText(const QModelIndex& idx) const |
| 262 | { |
| 263 | Q_ASSERT(idx.model() == this); |
| 264 | |
| 265 | if (!idx.isValid()) { |
| 266 | return QString(); |
| 267 | } |
| 268 | |
| 269 | return data(firstColumn(idx), CodeCompletionModel::ItemSelected).toString(); |
| 270 | } |
| 271 | |
| 272 | QRect ExpandingWidgetModel::partialExpandRect(const QModelIndex& idx_) const |
| 273 | { |