mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-07-21 05:39:11 -04: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
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue