refs #413, #403 Removed default constructors of CAvionicsBase and CPhysicalQuantity, not needed.

Conflicts:
	src/blackmisc/aviation/avionicsbase.h
This commit is contained in:
Mathew Sutcliffe
2015-05-06 23:09:31 +01:00
parent 2f66785c63
commit 84800c190a
4 changed files with 17 additions and 18 deletions

View File

@@ -32,10 +32,6 @@ namespace BlackMisc
protected:
QString m_name; //!< name of the unit
//! Default constructor
//! \todo Remove as part of MS' CValueObject refactoring
CAvionicsBase() : m_name("empty") {}
//! \brief Constructor
CAvionicsBase(const QString &name) : m_name(name) {}