We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83e6858 commit 1b5fbf9Copy full SHA for 1b5fbf9
src/plugins/grass/qtermwidget/History.cpp
@@ -314,7 +314,7 @@ void HistoryScrollBuffer::addCellsVector(const QVector<Character>& cells)
314
void HistoryScrollBuffer::addCells(const Character a[], int count)
315
{
316
HistoryLine newLine(count);
317
- qCopy(a,a+count,newLine.begin());
+ std::copy(a,a+count,newLine.begin());
318
319
addCellsVector(newLine);
320
}
@@ -730,7 +730,7 @@ void CompactHistoryScroll::addCellsVector ( const TextLine& cells )
730
void CompactHistoryScroll::addCells ( const Character a[], int count )
731
732
TextLine newLine ( count );
733
- qCopy ( a,a+count,newLine.begin() );
+ std::copy ( a,a+count,newLine.begin() );
734
addCellsVector ( newLine );
735
736
0 commit comments