~yofel/yakuake/master

« back to all changes in this revision

Viewing changes to app/visualeventoverlay.cpp

  • Committer: Yuri Chornoivan
  • Date: 2019-08-16 10:16:19 UTC
  • Revision ID: git-v1:3c7875ed644aca3b6582fdb3d7134f36847b159c
Get rid of deprecated qSort(), qFind(), and screenCount()

Show diffs side-by-side

added added

removed removed

Lines of Context:
148
148
    m_eventRects.removeAll(eventRect);
149
149
    m_eventRects.append(eventRect);
150
150
 
151
 
    qSort(m_eventRects);
 
151
    std::sort(m_eventRects.begin(), m_eventRects.end());
152
152
 
153
153
    update();
154
154
}