diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 3f01b070ad821..75c6f458295cf 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -51,19 +51,6 @@ else() ) endif() -find_package(Qt${QT_MAJOR_VERSION}WebEngine ${REQUIRED_QT_VERSION} CONFIG QUIET) -if(NOT BUILD_WITH_WEBENGINE) - set_package_properties(Qt${QT_MAJOR_VERSION}WebEngine PROPERTIES - DESCRIPTION "Qt${QT_MAJOR_VERSION} WebEngine component." - TYPE RECOMMENDED - ) -else() - set_package_properties(Qt${QT_MAJOR_VERSION}WebEngine PROPERTIES - DESCRIPTION "Qt${QT_MAJOR_VERSION} WebEngine component." - TYPE REQUIRED - ) -endif() - find_package(Qt${QT_VERSION_MAJOR}WebEngineCore ${REQUIRED_QT_VERSION} CONFIG QUIET) if(APPLE) set_package_properties(Qt${QT_VERSION_MAJOR}WebEngineCore PROPERTIES diff --git a/src/common/remotepermissions.cpp b/src/common/remotepermissions.cpp index bfe93922a679c..18075fc997bf6 100644 --- a/src/common/remotepermissions.cpp +++ b/src/common/remotepermissions.cpp @@ -18,6 +18,7 @@ #include "remotepermissions.h" +#include #include #include diff --git a/src/gui/CMakeLists.txt b/src/gui/CMakeLists.txt index d9f29c808a961..a10ccbe1c563d 100644 --- a/src/gui/CMakeLists.txt +++ b/src/gui/CMakeLists.txt @@ -1,18 +1,7 @@ project(gui) find_package(Qt${QT_MAJOR_VERSION} REQUIRED COMPONENTS Widgets Svg Qml Quick QuickControls2 QuickWidgets Xml Network) -find_package(KF5Archive REQUIRED) -find_package(KF5GuiAddons) - -if(QUICK_COMPILER) - if (${QT_VERSION_MAJOR} STREQUAL "5") - set(REQUIRED_QT_VERSION "5.15.0") - find_package(Qt${QT_MAJOR_VERSION} ${REQUIRED_QT_VERSION} CONFIG REQUIRED QuickCompiler) - set_package_properties(Qt5QuickCompiler PROPERTIES - DESCRIPTION "Compile QML at build time" - TYPE REQUIRED - ) - endif() -endif() +find_package(KF6Archive REQUIRED) +find_package(KF6GuiAddons) if (NOT TARGET Qt::GuiPrivate) message(FATAL_ERROR "Could not find GuiPrivate component of Qt. It might be shipped as a separate package, please check that.") @@ -58,11 +47,7 @@ set(client_UI_SRCS wizard/welcomepage.ui ) -if(Qt5QuickCompiler_FOUND) - qtquick_compiler_add_resources(client_UI_SRCS ../../resources.qrc ${CMAKE_SOURCE_DIR}/theme.qrc) -else() - qt_add_resources(client_UI_SRCS ../../resources.qrc ${CMAKE_SOURCE_DIR}/theme.qrc) -endif() +qt_add_resources(client_UI_SRCS ../../resources.qrc ${CMAKE_SOURCE_DIR}/theme.qrc) set(client_SRCS accountmanager.h @@ -406,7 +391,7 @@ set( final_src ) if(Qt${QT_MAJOR_VERSION}Keychain_FOUND) - list(APPEND libsync_LINK_TARGETS qt5keychain) + list(APPEND libsync_LINK_TARGETS Qt6::keychain) endif() # add executable icon on windows and osx @@ -568,13 +553,13 @@ target_link_libraries(nextcloudCore Qt::Quick Qt::QuickControls2 Qt::QuickWidgets - KF5::Archive + KF6::Archive ) -if(KF5GuiAddons_FOUND) +if(KF6GuiAddons_FOUND) target_link_libraries(nextcloudCore PUBLIC - KF5::GuiAddons + KF6::GuiAddons ) add_definitions(-DHAVE_KGUIADDONS) endif() @@ -591,7 +576,7 @@ foreach(FILE IN LISTS client_UI_SRCS) set_property(SOURCE ${FILE} PROPERTY SKIP_UNITY_BUILD_INCLUSION ON) endforeach() -if(Qt5WebEngine_FOUND AND Qt5WebEngineWidgets_FOUND) +if(Qt6WebEngine_FOUND AND Qt6WebEngineWidgets_FOUND) target_link_libraries(nextcloudCore PUBLIC Qt::WebEngineWidgets) endif() diff --git a/src/gui/application.cpp b/src/gui/application.cpp index ffa04c70e8b09..e64949dba42b5 100644 --- a/src/gui/application.cpp +++ b/src/gui/application.cpp @@ -530,7 +530,7 @@ void Application::setupConfigFile() QT_WARNING_POP setApplicationName(_theme->appName()); - auto oldDir = QStandardPaths::writableLocation(QStandardPaths::DataLocation); + auto oldDir = QStandardPaths::writableLocation(QStandardPaths::AppDataLocation); // macOS 10.11.x does not like trailing slash for rename/move. if (oldDir.endsWith('/')) { diff --git a/src/gui/folder.cpp b/src/gui/folder.cpp index bb03ed00067ce..01e3c2a53209d 100644 --- a/src/gui/folder.cpp +++ b/src/gui/folder.cpp @@ -572,6 +572,7 @@ void Folder::slotWatchedPathChanged(const QStringView &path, const ChangeReason if (!pinState || *pinState != PinState::Excluded) { if (!_vfs->setPinState(relativePath.toString(), PinState::Excluded)) { qCWarning(lcFolder) << "Could not set pin state of" << relativePath << "to excluded"; + } } return; } else { diff --git a/src/gui/folder.h b/src/gui/folder.h index 6ea794625bfa6..e3bed9f7f92e8 100644 --- a/src/gui/folder.h +++ b/src/gui/folder.h @@ -26,6 +26,8 @@ #include #include #include +#include + #include #include #include diff --git a/src/libsync/CMakeLists.txt b/src/libsync/CMakeLists.txt index e163352167327..299e62a088fe5 100644 --- a/src/libsync/CMakeLists.txt +++ b/src/libsync/CMakeLists.txt @@ -1,5 +1,5 @@ project(libsync) -find_package(KF5Archive REQUIRED) +find_package(KF6Archive REQUIRED) include(DefinePlatformDefaults) set(CMAKE_AUTOMOC TRUE) @@ -211,7 +211,7 @@ target_link_libraries(nextcloudsync Qt::WebSockets Qt::Xml Qt::Sql - KF5::Archive + KF6::Archive Qt::Core5Compat ) @@ -222,9 +222,6 @@ target_compile_features(nextcloudsync target_compile_definitions(nextcloudsync PRIVATE OPENSSL_SUPPRESS_DEPRECATED) -find_package(Qt5 REQUIRED COMPONENTS Gui Widgets Svg) -target_link_libraries(nextcloudsync PUBLIC Qt5::Gui Qt5::Widgets Qt5::Svg) - if (NOT TOKEN_AUTH_ONLY) find_package(Qt${QT_MAJOR_VERSION} COMPONENTS REQUIRED Widgets Svg) target_link_libraries(nextcloudsync PUBLIC Qt::Widgets Qt::Svg Qt${QT_MAJOR_VERSION}Keychain::Qt${QT_MAJOR_VERSION}Keychain) diff --git a/src/libsync/foldermetadata.cpp b/src/libsync/foldermetadata.cpp index 4374093325244..6536e283f4392 100644 --- a/src/libsync/foldermetadata.cpp +++ b/src/libsync/foldermetadata.cpp @@ -599,7 +599,7 @@ QByteArray FolderMetadata::encryptedMetadata() QJsonObject files, folders; for (auto it = _files.constBegin(), end = _files.constEnd(); it != end; ++it) { - const auto file = convertFileToJsonObject(it); + const auto file = convertFileToJsonObject(&(*it)); if (file.isEmpty()) { qCDebug(lcCseMetadata) << "Metadata generation failed for file" << it->encryptedFilename; return {};