Merge remote-tracking branch 'sm0svx/master' into tetra-contrib
This commit is contained in:
commit
962b4a90fa
|
|
@ -20,7 +20,7 @@
|
|||
##############################################################################
|
||||
# Project setup
|
||||
##############################################################################
|
||||
cmake_minimum_required(VERSION 2.8)
|
||||
cmake_minimum_required(VERSION 2.8.12)
|
||||
project(svxlink C CXX)
|
||||
#enable_testing()
|
||||
|
||||
|
|
|
|||
|
|
@ -133,11 +133,12 @@ EchoLinkDirectoryModel::~EchoLinkDirectoryModel(void)
|
|||
void EchoLinkDirectoryModel::updateStationList(
|
||||
const list<StationData> &stn_list)
|
||||
{
|
||||
#if QT_VERSION >= 0x050b00
|
||||
#if QT_VERSION >= 0x050e00
|
||||
QList<StationData> updated_stations(stn_list.begin(), stn_list.end());
|
||||
std::stable_sort(updated_stations.begin(), updated_stations.end());
|
||||
#else
|
||||
QList<StationData> updated_stations = QList<StationData>::fromStdList(stn_list);
|
||||
QList<StationData> updated_stations =
|
||||
QList<StationData>::fromStdList(stn_list);
|
||||
qStableSort(updated_stations);
|
||||
#endif
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
PROJECT=master
|
||||
|
||||
# Version for the Qtel application
|
||||
QTEL=1.2.4.99.3
|
||||
QTEL=1.2.4.99.4
|
||||
|
||||
# Version for the EchoLib library
|
||||
LIBECHOLIB=1.3.3.99.0
|
||||
|
|
|
|||
Loading…
Reference in New Issue