Skip to content

Commit

Permalink
Remove default nullptr parent for classes that must have a parent
Browse files Browse the repository at this point in the history
  • Loading branch information
oblivioncth committed Jul 17, 2023
1 parent 5fea09f commit 269da20
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion app/src/task/t-bideprocess.h
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class TBideProcess : public Task

//-Constructor----------------------------------------------------------------------------------------------------------
public:
TBideProcess(QObject* parent = nullptr);
TBideProcess(QObject* parent);

//-Instance Functions------------------------------------------------------------------------------------------------------
public:
Expand Down
2 changes: 1 addition & 1 deletion app/src/task/t-download.h
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ class TDownload : public Task

//-Constructor----------------------------------------------------------------------------------------------------------
public:
TDownload(QObject* parent = nullptr);
TDownload(QObject* parent);

//-Instance Functions------------------------------------------------------------------------------------------------------
public:
Expand Down
2 changes: 1 addition & 1 deletion app/src/task/t-exec.h
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ class TExec : public Task

//-Constructor----------------------------------------------------------------------------------------------------------
public:
TExec(QObject* parent = nullptr);
TExec(QObject* parent);

//-Class Functions-----------------------------------------------------------------------------------------------------
private:
Expand Down
2 changes: 1 addition & 1 deletion app/src/task/t-extra.h
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class TExtra : public Task

//-Constructor----------------------------------------------------------------------------------------------------------
public:
TExtra(QObject* parent = nullptr);
TExtra(QObject* parent);

//-Instance Functions------------------------------------------------------------------------------------------------------
public:
Expand Down
2 changes: 1 addition & 1 deletion app/src/task/t-extract.h
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class TExtract : public Task

//-Constructor----------------------------------------------------------------------------------------------------------
public:
TExtract(QObject* parent = nullptr);
TExtract(QObject* parent);

//-Class Functions---------------------------------------------------------------------------------------------------------------
private:
Expand Down
2 changes: 1 addition & 1 deletion app/src/task/t-generic.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class TGeneric : public Task

//-Constructor----------------------------------------------------------------------------------------------------------
public:
TGeneric(QObject* parent = nullptr);
TGeneric(QObject* parent);

//-Instance Functions------------------------------------------------------------------------------------------------------
public:
Expand Down
2 changes: 1 addition & 1 deletion app/src/task/t-message.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class TMessage : public Task

//-Constructor----------------------------------------------------------------------------------------------------------
public:
TMessage(QObject* parent = nullptr);
TMessage(QObject* parent);

//-Instance Functions------------------------------------------------------------------------------------------------------
public:
Expand Down
2 changes: 1 addition & 1 deletion app/src/task/t-mount.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class TMount : public Task

//-Constructor----------------------------------------------------------------------------------------------------------
public:
TMount(QObject* parent = nullptr);
TMount(QObject* parent);

//-Instance Functions------------------------------------------------------------------------------------------------------
public:
Expand Down
2 changes: 1 addition & 1 deletion app/src/task/t-sleep.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class TSleep : public Task

//-Constructor----------------------------------------------------------------------------------------------------------
public:
TSleep(QObject* parent = nullptr);
TSleep(QObject* parent);

//-Instance Functions------------------------------------------------------------------------------------------------------
public:
Expand Down
2 changes: 1 addition & 1 deletion app/src/tools/blockingprocessmanager.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class BlockingProcessManager : public QObject

//-Constructor----------------------------------------------------------------------------------------------------------
public:
BlockingProcessManager(QProcess* process, const QString& identifier, QObject* parent = nullptr);
BlockingProcessManager(QProcess* process, const QString& identifier, QObject* parent);

//-Instance Functions------------------------------------------------------------------------------------------------------
private:
Expand Down
2 changes: 1 addition & 1 deletion app/src/tools/deferredprocessmanager.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class DeferredProcessManager : public QObject

//-Constructor----------------------------------------------------------------------------------------------------------
public:
DeferredProcessManager(QObject* parent = nullptr);
DeferredProcessManager(QObject* parent);

//-Instance Functions------------------------------------------------------------------------------------------------------
private:
Expand Down

0 comments on commit 269da20

Please sign in to comment.