Gui: remove redundant void

This commit is contained in:
wmayer
2022-08-12 17:59:59 +02:00
parent fd0a0dd1a2
commit 779a728a8c
19 changed files with 87 additions and 91 deletions

View File

@@ -95,7 +95,7 @@ inline bool Breakpoint::operator ==(const QString& fn)
class GuiExport PythonDebugModule : public Py::ExtensionModule<PythonDebugModule>
{
public:
static void init_module(void);
static void init_module();
PythonDebugModule();
virtual ~PythonDebugModule();
@@ -113,7 +113,7 @@ private:
class GuiExport PythonDebugStdout : public Py::PythonExtension<PythonDebugStdout>
{
public:
static void init_type(void); // announce properties and methods
static void init_type(); // announce properties and methods
PythonDebugStdout();
~PythonDebugStdout();
@@ -129,7 +129,7 @@ public:
class GuiExport PythonDebugStderr : public Py::PythonExtension<PythonDebugStderr>
{
public:
static void init_type(void); // announce properties and methods
static void init_type(); // announce properties and methods
PythonDebugStderr();
~PythonDebugStderr();
@@ -144,7 +144,7 @@ public:
class GuiExport PythonDebugExcept : public Py::PythonExtension<PythonDebugExcept>
{
public:
static void init_type(void); // announce properties and methods
static void init_type(); // announce properties and methods
PythonDebugExcept();
~PythonDebugExcept();