forked from qt-creator/qt-creator
CodaRunControl: Add missing destructor.
This commit is contained in:
@@ -88,6 +88,10 @@ CodaRunControl::CodaRunControl(RunConfiguration *runConfiguration, const QString
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
CodaRunControl::~CodaRunControl()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
bool CodaRunControl::doStart()
|
bool CodaRunControl::doStart()
|
||||||
{
|
{
|
||||||
if (m_address.isEmpty() && m_serialPort.isEmpty()) {
|
if (m_address.isEmpty() && m_serialPort.isEmpty()) {
|
||||||
|
|||||||
@@ -59,7 +59,9 @@ class CodaRunControl : public S60RunControlBase
|
|||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
CodaRunControl(ProjectExplorer::RunConfiguration *runConfiguration, const QString &mode);
|
explicit CodaRunControl(ProjectExplorer::RunConfiguration *runConfiguration, const QString &mode);
|
||||||
|
virtual ~CodaRunControl();
|
||||||
|
|
||||||
virtual bool isRunning() const;
|
virtual bool isRunning() const;
|
||||||
|
|
||||||
static QMessageBox *createCodaWaitingMessageBox(QWidget *parent = 0);
|
static QMessageBox *createCodaWaitingMessageBox(QWidget *parent = 0);
|
||||||
|
|||||||
Reference in New Issue
Block a user