mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 03:52:49 +01:00
qt: drop leftover boost::function
usage in Qt, drop header from list
This commit is contained in:
parent
c47e9e78ed
commit
9ae39f9ba7
@ -7,8 +7,6 @@
|
||||
|
||||
#include <qt/trafficgraphdata.h>
|
||||
|
||||
#include <boost/function.hpp>
|
||||
|
||||
#include <QWidget>
|
||||
#include <QQueue>
|
||||
|
||||
@ -37,7 +35,7 @@ public Q_SLOTS:
|
||||
void clear();
|
||||
|
||||
private:
|
||||
typedef boost::function<float(const TrafficSample&)> SampleChooser;
|
||||
typedef std::function<float(const TrafficSample&)> SampleChooser;
|
||||
void paintPath(QPainterPath &path, const TrafficGraphData::SampleQueue &queue, SampleChooser chooser);
|
||||
|
||||
QTimer *timer;
|
||||
|
@ -52,7 +52,6 @@ EXPECTED_BOOST_INCLUDES=(
|
||||
boost/date_time/posix_time/posix_time.hpp
|
||||
boost/filesystem.hpp
|
||||
boost/filesystem/fstream.hpp
|
||||
boost/function.hpp
|
||||
boost/multi_index/hashed_index.hpp
|
||||
boost/multi_index/ordered_index.hpp
|
||||
boost/multi_index/sequenced_index.hpp
|
||||
|
Loading…
Reference in New Issue
Block a user