mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-26 23:36:59 -05:00
Fix CppCheck in ToasterItem.h
/retroshare-gui/src/gui/toaster/ToasterItem.h:35: warning: Cppcheck(noExplicitConstructor): Class 'ToasterItem' has a constructor with 1 argument that is not explicit.
This commit is contained in:
parent
d234b8be5e
commit
25f1a919e0
@ -32,7 +32,7 @@ class ToasterItem : public QObject
|
|||||||
|
|
||||||
public:
|
public:
|
||||||
/** Default Constructor */
|
/** Default Constructor */
|
||||||
ToasterItem(QWidget *child = 0);
|
explicit ToasterItem(QWidget *child = 0);
|
||||||
/** Default Destructor */
|
/** Default Destructor */
|
||||||
virtual ~ToasterItem();
|
virtual ~ToasterItem();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user