diff --git a/src/gui/wizard/owncloudsetupnocredspage.ui b/src/gui/wizard/owncloudsetupnocredspage.ui index 32995ba112..1644d93f90 100644 --- a/src/gui/wizard/owncloudsetupnocredspage.ui +++ b/src/gui/wizard/owncloudsetupnocredspage.ui @@ -207,7 +207,7 @@ - https://... + diff --git a/src/libsync/nextcloudtheme.cpp b/src/libsync/nextcloudtheme.cpp index a3fdbb31a0..6687d6290a 100644 --- a/src/libsync/nextcloudtheme.cpp +++ b/src/libsync/nextcloudtheme.cpp @@ -33,4 +33,9 @@ NextcloudTheme::NextcloudTheme() { } +QString NextcloudTheme::wizardUrlHint() const +{ + return QString("https://..."); +} + } diff --git a/src/libsync/nextcloudtheme.h b/src/libsync/nextcloudtheme.h index 4c8dfe9981..f7c215b8f7 100644 --- a/src/libsync/nextcloudtheme.h +++ b/src/libsync/nextcloudtheme.h @@ -29,6 +29,7 @@ class NextcloudTheme : public Theme public: NextcloudTheme(); + QString wizardUrlHint() const override; }; } #endif // NEXTCLOUD_THEME_H