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()
|
||||
{
|
||||
if (m_address.isEmpty() && m_serialPort.isEmpty()) {
|
||||
|
||||
@@ -59,7 +59,9 @@ class CodaRunControl : public S60RunControlBase
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
CodaRunControl(ProjectExplorer::RunConfiguration *runConfiguration, const QString &mode);
|
||||
explicit CodaRunControl(ProjectExplorer::RunConfiguration *runConfiguration, const QString &mode);
|
||||
virtual ~CodaRunControl();
|
||||
|
||||
virtual bool isRunning() const;
|
||||
|
||||
static QMessageBox *createCodaWaitingMessageBox(QWidget *parent = 0);
|
||||
|
||||
Reference in New Issue
Block a user