summaryrefslogtreecommitdiffstats
path: root/examples/charts/boxplotchart/boxdatareader.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/charts/boxplotchart/boxdatareader.cpp')
-rw-r--r--examples/charts/boxplotchart/boxdatareader.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/charts/boxplotchart/boxdatareader.cpp b/examples/charts/boxplotchart/boxdatareader.cpp
index 10591135..f634bd4e 100644
--- a/examples/charts/boxplotchart/boxdatareader.cpp
+++ b/examples/charts/boxplotchart/boxdatareader.cpp
@@ -29,6 +29,8 @@
#include "boxdatareader.h"
+#include <algorithm>
+
BoxDataReader::BoxDataReader(QIODevice *device) :
QTextStream(device)
{
@@ -56,7 +58,7 @@ QBoxSet *BoxDataReader::readBox()
for (int i = 1; i < strList.count(); i++)
sortedList.append(strList.at(i).toDouble());
- qSort(sortedList.begin(), sortedList.end());
+ std::sort(sortedList.begin(), sortedList.end());
//! [3]
int count = sortedList.count();