Merge branch 'konstantink/konsole-remove-deprecated-qcopy'

wilder-portage
Kurt Hindenburg 7 years ago
commit 3db90bbf70
  1. 2
      src/History.cpp

@ -544,7 +544,7 @@ void CompactHistoryScroll::addCellsVector(const TextLine &cells)
void CompactHistoryScroll::addCells(const Character a[], int count)
{
TextLine newLine(count);
qCopy(a, a + count, newLine.begin());
std::copy(a, a + count, newLine.begin());
addCellsVector(newLine);
}

Loading…
Cancel
Save