diff options
| author | Liang Qi <[email protected]> | 2017-03-02 09:04:38 +0100 | 
|---|---|---|
| committer | Liang Qi <[email protected]> | 2017-03-02 09:04:38 +0100 | 
| commit | 71264bae08d81bdeceb96133fdb01c370504dfcc (patch) | |
| tree | d5dadaac8209d5ef1857a4d65197b9ee12b39848 /src/widgets/dialogs/qsidebar.cpp | |
| parent | 5e785c0b83c9908c665f253c131629ac325a21f5 (diff) | |
| parent | 6d10f739cd750968d0dd0e9d8fa4b64353a86c6c (diff) | |
Merge remote-tracking branch 'origin/5.9' into dev
Change-Id: I84097f8e7b3b2128028bd7693c913d6968b82bfe
Diffstat (limited to 'src/widgets/dialogs/qsidebar.cpp')
| -rw-r--r-- | src/widgets/dialogs/qsidebar.cpp | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/src/widgets/dialogs/qsidebar.cpp b/src/widgets/dialogs/qsidebar.cpp index 713ccb65564..9bb046db615 100644 --- a/src/widgets/dialogs/qsidebar.cpp +++ b/src/widgets/dialogs/qsidebar.cpp @@ -274,7 +274,7 @@ void QUrlModel::addUrls(const QList<QUrl> &list, int row, bool move)              continue;          insertRows(row, 1);          setUrl(index(row, 0), url, idx); -        watching.append(qMakePair(idx, cleanUrl)); +        watching.append({idx, cleanUrl});      }  } @@ -326,7 +326,7 @@ void QUrlModel::dataChanged(const QModelIndex &topLeft, const QModelIndex &botto  {      QModelIndex parent = topLeft.parent();      for (int i = 0; i < watching.count(); ++i) { -        QModelIndex index = watching.at(i).first; +        QModelIndex index = watching.at(i).index;          if (index.model() && topLeft.model()) {              Q_ASSERT(index.model() == topLeft.model());          } @@ -335,7 +335,7 @@ void QUrlModel::dataChanged(const QModelIndex &topLeft, const QModelIndex &botto              && index.column() >= topLeft.column()              && index.column() <= bottomRight.column()              && index.parent() == parent) { -                changed(watching.at(i).second); +                changed(watching.at(i).path);          }      }  } @@ -349,12 +349,12 @@ void QUrlModel::layoutChanged()      const int numPaths = watching.count();      paths.reserve(numPaths);      for (int i = 0; i < numPaths; ++i) -        paths.append(watching.at(i).second); +        paths.append(watching.at(i).path);      watching.clear();      for (int i = 0; i < numPaths; ++i) {          QString path = paths.at(i);          QModelIndex newIndex = fileSystemModel->index(path); -        watching.append(QPair<QModelIndex, QString>(newIndex, path)); +        watching.append({newIndex, path});          if (newIndex.isValid())              changed(path);       } | 
