refs #937 Resolved clazy warnings: rule of three.

This commit is contained in:
Mathew Sutcliffe
2017-04-15 01:28:23 +01:00
parent 3ea9e33e6b
commit b20ebd6dfd
15 changed files with 60 additions and 13 deletions

View File

@@ -42,6 +42,12 @@ namespace BlackCore
//! Signature just to set an icon for an action
CActionBind(const QString &action, const QPixmap &icon);
//! Not copyable
//! @{
CActionBind(const CActionBind &) = delete;
CActionBind &operator =(const CActionBind &) = delete;
//! @}
//! Destructor
~CActionBind();