Remove legacy code

This commit is contained in:
Daniel Molkentin 2013-11-11 15:36:49 +01:00
parent 121b18bf70
commit ad1c1f4130
2 changed files with 0 additions and 12 deletions

View file

@ -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();
} }

View file

@ -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& )