diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 86fef109..ff14c3f0 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -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() diff --git a/src/qtel/EchoLinkDirectoryModel.cpp b/src/qtel/EchoLinkDirectoryModel.cpp index eb620342..fb7f6413 100644 --- a/src/qtel/EchoLinkDirectoryModel.cpp +++ b/src/qtel/EchoLinkDirectoryModel.cpp @@ -133,11 +133,12 @@ EchoLinkDirectoryModel::~EchoLinkDirectoryModel(void) void EchoLinkDirectoryModel::updateStationList( const list &stn_list) { -#if QT_VERSION >= 0x050b00 +#if QT_VERSION >= 0x050e00 QList updated_stations(stn_list.begin(), stn_list.end()); std::stable_sort(updated_stations.begin(), updated_stations.end()); #else - QList updated_stations = QList::fromStdList(stn_list); + QList updated_stations = + QList::fromStdList(stn_list); qStableSort(updated_stations); #endif diff --git a/src/versions b/src/versions index 6e1ec457..63925473 100644 --- a/src/versions +++ b/src/versions @@ -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