mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-26 23:28:14 +03:00
Remove legacy code
This commit is contained in:
parent
121b18bf70
commit
ad1c1f4130
2 changed files with 0 additions and 12 deletions
|
@ -197,7 +197,6 @@ void HttpCredentials::slotReadJobDone(QKeychain::Job *job)
|
||||||
Q_EMIT fetched();
|
Q_EMIT fetched();
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
// ### retry with insecure storage
|
|
||||||
qDebug() << "Error while reading password" << job->errorString();
|
qDebug() << "Error while reading password" << job->errorString();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -192,9 +192,6 @@ void AccountSettings::slotAddFolder( Folder *folder )
|
||||||
QStandardItem *item = new QStandardItem();
|
QStandardItem *item = new QStandardItem();
|
||||||
folderToModelItem( item, folder );
|
folderToModelItem( item, folder );
|
||||||
_model->appendRow( item );
|
_model->appendRow( item );
|
||||||
// ### TODO
|
|
||||||
//slotCheckConnection();
|
|
||||||
|
|
||||||
// in order to update the enabled state of the "Sync now" button
|
// in order to update the enabled state of the "Sync now" button
|
||||||
connect(folder, SIGNAL(syncStateChange()), this, SLOT(buttonsSetEnabled()), Qt::UniqueConnection);
|
connect(folder, SIGNAL(syncStateChange()), this, SLOT(buttonsSetEnabled()), Qt::UniqueConnection);
|
||||||
}
|
}
|
||||||
|
@ -315,8 +312,6 @@ void AccountSettings::slotRemoveCurrentFolder()
|
||||||
_model->removeRow(row);
|
_model->removeRow(row);
|
||||||
|
|
||||||
emit folderChanged();
|
emit folderChanged();
|
||||||
// ### TODO
|
|
||||||
//slotCheckConnection();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -493,12 +488,6 @@ void AccountSettings::slotUpdateFolderState( Folder *folder )
|
||||||
} else {
|
} else {
|
||||||
// the dialog is not visible.
|
// the dialog is not visible.
|
||||||
}
|
}
|
||||||
|
|
||||||
// showConnectionLabel( tr("Connected to <a href=\"%1\">%2</a>.").arg(url, safeUrl.toString()),
|
|
||||||
// tr("Version: %1 (%2)").arg(versionStr).arg(version) );
|
|
||||||
// ui->_ButtonAdd->setEnabled(true);
|
|
||||||
// ### TODO
|
|
||||||
// slotCheckConnection();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//void AccountSettings::slotOCInfo( const QString& url, const QString& versionStr, const QString& version, const QString& )
|
//void AccountSettings::slotOCInfo( const QString& url, const QString& versionStr, const QString& version, const QString& )
|
||||||
|
|
Loading…
Reference in a new issue