Gui: Single arg ctors must be explicit (PR #7369)

This commit is contained in:
berniev
2022-08-15 12:24:41 +10:00
committed by wmayer
parent 4faf443883
commit a909df7f39
122 changed files with 237 additions and 237 deletions

View File

@@ -59,7 +59,7 @@ private:
class GuiExport TaskWatcherPython : public TaskWatcher
{
public:
TaskWatcherPython(const Py::Object&);
explicit TaskWatcherPython(const Py::Object&);
~TaskWatcherPython() override;
bool shouldShow() override;
@@ -70,7 +70,7 @@ private:
class GuiExport TaskDialogPython : public TaskDialog
{
public:
TaskDialogPython(const Py::Object&);
explicit TaskDialogPython(const Py::Object&);
~TaskDialogPython() override;
QDialogButtonBox::StandardButtons getStandardButtons() const override;