From 067e4c983908b9ddb65778fa24eabf0b20a85dc5 Mon Sep 17 00:00:00 2001 From: Weng Xuetian Date: Mon, 22 Apr 2024 00:57:53 -0700 Subject: [PATCH] bump version --- CMakeLists.txt | 2 +- src/migrator/app/taskpage.cpp | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9901884..d76fd29 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ if ("${CMAKE_BINARY_DIR}" STREQUAL "${CMAKE_SOURCE_DIR}") You must delete them, or cmake will refuse to work.") endif() -project(fcitx5-configtool VERSION 5.1.4) +project(fcitx5-configtool VERSION 5.1.5) option(USE_QT6 "Build with Qt6" On) diff --git a/src/migrator/app/taskpage.cpp b/src/migrator/app/taskpage.cpp index 83c715e..f595ddc 100644 --- a/src/migrator/app/taskpage.cpp +++ b/src/migrator/app/taskpage.cpp @@ -119,8 +119,7 @@ class TaskModel : public QAbstractListModel { } bool allSelected() const { - return availableSize_ != 0 && - availableSize_ == selected_.size(); + return availableSize_ != 0 && availableSize_ == selected_.size(); } bool someSelected() const { return !selected_.isEmpty(); }