Fix compiler issues with Qt 5.14

* Remove deprecation warnings when not doing a DEV_BUILD. Qt 5.14 introduced several deprecation flags on basic function calls in QList and QSet that would require several #pragma ignores. Assuming this was in preparation to Qt 6.0.

* Remove unnecessary assert in PasswordEditWidget that was hit in macOS debug builds.
This commit is contained in:
Jonathan White 2019-12-30 11:54:50 -05:00
parent adb29dd0e4
commit 2a51f2cba5
2 changed files with 3 additions and 2 deletions

View file

@ -300,6 +300,9 @@ endif()
if(WITH_DEV_BUILD)
add_definitions(-DQT_DEPRECATED_WARNINGS -DGCRYPT_NO_DEPRECATED)
else()
add_definitions(-DQT_NO_DEPRECATED_WARNINGS)
add_gcc_compiler_cxxflags("-Wno-deprecated-declarations")
endif()
if(MINGW)