Remove unused viable #4696

This commit is contained in:
Jerry (Xinyu Hou) 2015-10-19 16:59:25 -07:00
parent d61b532705
commit 4197fb7a0e
2 changed files with 9 additions and 14 deletions

View File

@ -20,7 +20,6 @@
#include "SslCertificate.h"
#include "FileSysClient.h"
#include "WebClient.h"
#include "PluginManager.h"
#include "MainWindow.h"
@ -178,21 +177,19 @@ bool PluginWizardPage::isComplete() const
void PluginWizardPage::initializePage()
{
QWizardPage::initializePage();
if (m_Email.isEmpty() ||
m_Password.isEmpty()) {
updateStatus(tr("Setup complete."));
showFinished();
return;
}
if (m_pFileSysClient == NULL) {
if (m_Email.isEmpty() ||
m_Password.isEmpty()) {
updateStatus(tr("Setup complete."));
showFinished();
return;
}
m_pFileSysClient = new FileSysClient();
m_pLabelSpinning->show();
m_pFileSysClient = new FileSysClient();
m_pWebClient = new WebClient();
m_pWebClient->setEmail(m_Email);
m_pWebClient->setPassword(m_Password);
QThread* thread = new QThread;
connect(m_pFileSysClient,

View File

@ -25,7 +25,6 @@
#include <QWizardPage>
class FileSysClient;
class WebClient;
class SslCertificate;
class MainWindow;
@ -62,7 +61,6 @@ private:
bool m_Finished;
QString m_Email;
QString m_Password;
WebClient* m_pWebClient;
FileSysClient* m_pFileSysClient;
PluginManager m_PluginManager;
SslCertificate* m_pSslCertificate;