mirror of
https://github.com/debauchee/barrier.git
synced 2024-11-23 20:12:39 +03:00
Remove unused viable #4696
This commit is contained in:
parent
d61b532705
commit
4197fb7a0e
@ -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,
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user