Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ option(QT6 "Build with Qt6" OFF)
if(APPLE)
if(QT6)
# Minimum macOS version supported by Qt 6
set(CMAKE_OSX_DEPLOYMENT_TARGET 10.14 CACHE STRING "Minimum macOS version the build will be able to run on" FORCE)
set(CMAKE_OSX_DEPLOYMENT_TARGET 10.15 CACHE STRING "Minimum macOS version the build will be able to run on" FORCE)
else()
# Minimum macOS version supported by Qt 5.12
set(CMAKE_OSX_DEPLOYMENT_TARGET 10.12 CACHE STRING "Minimum macOS version the build will be able to run on" FORCE)
Expand Down
2 changes: 1 addition & 1 deletion src/util/db/sqlstringformatter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ QString SqlStringFormatter::format(
return value; // unformatted
}
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
QSqlField stringField(QString(), QMetaType(QMetaType::QString));
QSqlField stringField{QString(), QMetaType(QMetaType::QString)};
Comment thread
Swiftb0y marked this conversation as resolved.
#else
QSqlField stringField(QString(), QVariant::String);
#endif
Expand Down