mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-17 19:05:31 +08:00
Ref T120, removed virtual dtor for
* CDictionary * CAircraftCfgEntriesList
This commit is contained in:
committed by
Mathew Sutcliffe
parent
2b0241a8a7
commit
4a9ab8c3d7
@@ -297,9 +297,6 @@ namespace BlackMisc
|
|||||||
//! Move constructor
|
//! Move constructor
|
||||||
CDictionary(CDictionary &&other) noexcept : m_impl(std::move(other.m_impl)) {}
|
CDictionary(CDictionary &&other) noexcept : m_impl(std::move(other.m_impl)) {}
|
||||||
|
|
||||||
//! Virtual destructor
|
|
||||||
virtual ~CDictionary() {}
|
|
||||||
|
|
||||||
//! Returns iterator at the beginning of the dictionary
|
//! Returns iterator at the beginning of the dictionary
|
||||||
iterator begin() { return m_impl.begin(); }
|
iterator begin() { return m_impl.begin(); }
|
||||||
|
|
||||||
|
|||||||
@@ -43,9 +43,6 @@ namespace BlackMisc
|
|||||||
//! Constructor
|
//! Constructor
|
||||||
CAircraftCfgEntriesList() {}
|
CAircraftCfgEntriesList() {}
|
||||||
|
|
||||||
//! Virtual destructor
|
|
||||||
virtual ~CAircraftCfgEntriesList() {}
|
|
||||||
|
|
||||||
//! Contains model with title?
|
//! Contains model with title?
|
||||||
bool containsModelWithTitle(const QString &title, Qt::CaseSensitivity caseSensitivity = Qt::CaseInsensitive);
|
bool containsModelWithTitle(const QString &title, Qt::CaseSensitivity caseSensitivity = Qt::CaseInsensitive);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user