From be39a74e30e05039c42c605184967fbeeba238c3 Mon Sep 17 00:00:00 2001 From: Montel Laurent Date: Wed, 11 May 2016 07:12:10 +0200 Subject: [PATCH 1/2] GIT_SILENT Prepare 5.2.2 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b444887..dfa989a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -18,7 +18,7 @@ include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE) include(ECMQtDeclareLoggingCategory) include(ECMAddTests) -set(MAILCOMMON_LIB_VERSION "5.2.1") +set(MAILCOMMON_LIB_VERSION "5.2.2") set(KF5_VERSION "5.19.0") set(KDEPIMLIBS_LIB_VERSION "5.2.0") set(MESSAGELIB_LIB_VERSION "5.2.0") From 21c46ecc4a2de5ba07054967b72d5fa6e03196c7 Mon Sep 17 00:00:00 2001 From: Montel Laurent Date: Sun, 15 May 2016 08:06:28 +0200 Subject: [PATCH 2/2] Sort case insensitive. Bug reported by david --- src/folder/accountconfigorderdialog.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/folder/accountconfigorderdialog.cpp b/src/folder/accountconfigorderdialog.cpp index 361df3e..c2c95cb 100644 --- a/src/folder/accountconfigorderdialog.cpp +++ b/src/folder/accountconfigorderdialog.cpp @@ -214,6 +214,7 @@ void AccountConfigOrderDialog::init() } } } + instanceList.sort(Qt::CaseInsensitive); const int numberOfList(listOrderAccount.count()); for (int i = 0; i < numberOfList; ++i) { instanceList.removeOne(listOrderAccount.at(i));