diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2021-12-28 20:45:45 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2021-12-28 20:45:45 +0900 |
commit | 82b07f1a3cc29b9785c292174343b464a774a722 (patch) | |
tree | 7a3501a01cf6e6d645929063ac601f4d3eb91edb /gui/polkit-tqt-gui-action.h | |
parent | 416bed9bc124e24cc1351c7d8e5810ca7570a023 (diff) | |
download | polkit-tqt-82b07f1a3cc29b9785c292174343b464a774a722.tar.gz polkit-tqt-82b07f1a3cc29b9785c292174343b464a774a722.zip |
Code improvements based on c++11 standard (ranged for loops and nullptr).
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'gui/polkit-tqt-gui-action.h')
-rw-r--r-- | gui/polkit-tqt-gui-action.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/polkit-tqt-gui-action.h b/gui/polkit-tqt-gui-action.h index 4f5bb2e2d..21c10100b 100644 --- a/gui/polkit-tqt-gui-action.h +++ b/gui/polkit-tqt-gui-action.h @@ -77,7 +77,7 @@ class POLKIT_TQT_EXPORT Action : public TQAction * \param actionId the PolicyKit action Id (e.g.: org.freedesktop.policykit.read) * \param parent the object parent */ - explicit Action(const TQString& actionId = TQString::null, TQObject *parent = 0); + explicit Action(const TQString& actionId = TQString::null, TQObject *parent = nullptr); ~Action(); |