Remove unused code
This commit is contained in:
parent
ca0237dcc7
commit
1f54dd2d3b
|
@ -55,8 +55,6 @@ private:
|
|||
const QStringList& args,
|
||||
const QStringList& env);
|
||||
|
||||
//static QString getPluginOsSpecificName(const QString& pluginName);
|
||||
|
||||
signals:
|
||||
void error(QString e);
|
||||
void info(QString i);
|
||||
|
|
|
@ -29,7 +29,6 @@
|
|||
PluginWizardPage::PluginWizardPage(MainWindow& mainWindow, QWidget *parent) :
|
||||
QWizardPage(parent),
|
||||
m_Finished(false),
|
||||
m_pFileSysClient(NULL),
|
||||
m_pSslCertificate(NULL),
|
||||
m_mainWindow(mainWindow)
|
||||
{
|
||||
|
@ -44,10 +43,6 @@ PluginWizardPage::PluginWizardPage(MainWindow& mainWindow, QWidget *parent) :
|
|||
|
||||
PluginWizardPage::~PluginWizardPage()
|
||||
{
|
||||
if (m_pFileSysClient != NULL) {
|
||||
delete m_pFileSysClient;
|
||||
}
|
||||
|
||||
delete m_pSslCertificate;
|
||||
}
|
||||
|
||||
|
|
|
@ -24,7 +24,6 @@
|
|||
#include "PluginManager.h"
|
||||
#include <QWizardPage>
|
||||
|
||||
class FileSysClient;
|
||||
class SslCertificate;
|
||||
class MainWindow;
|
||||
|
||||
|
@ -61,7 +60,6 @@ private:
|
|||
bool m_Finished;
|
||||
QString m_Email;
|
||||
QString m_Password;
|
||||
FileSysClient* m_pFileSysClient;
|
||||
PluginManager m_PluginManager;
|
||||
SslCertificate* m_pSslCertificate;
|
||||
QThread* m_pThread;
|
||||
|
|
Loading…
Reference in New Issue