Wizard: Removed superflous text, as it is already in the header.

This fixes mirall#2358
This commit is contained in:
Klaas Freitag 2014-12-08 11:12:15 +01:00
parent e69702799f
commit 72a90199db

View file

@ -71,18 +71,7 @@ bool OwncloudWizardResultPage::isComplete() const
void OwncloudWizardResultPage::initializePage() void OwncloudWizardResultPage::initializePage()
{ {
const QString localFolder = wizard()->property("localFolder").toString(); _ui.localFolderLabel->setText( QString::null );
QString text;
if( _remoteFolder == QLatin1String("/") || _remoteFolder.isEmpty() ) {
text = tr("Your entire account is synced to the local folder <i>%1</i>")
.arg(QDir::toNativeSeparators(localFolder));
} else {
text = tr("%1 folder <i>%1</i> is synced to local folder <i>%2</i>")
.arg(Theme::instance()->appNameGUI())
.arg(_remoteFolder).arg(QDir::toNativeSeparators(localFolder));
}
_ui.localFolderLabel->setText( text );
} }
void OwncloudWizardResultPage::setRemoteFolder(const QString &remoteFolder) void OwncloudWizardResultPage::setRemoteFolder(const QString &remoteFolder)