diff options
author | mio <[email protected]> | 2024-08-22 19:34:23 +1000 |
---|---|---|
committer | mio <[email protected]> | 2024-08-22 23:15:20 +1000 |
commit | ed55bf072682ebf73239e74b7e3dd286ed5616a5 (patch) | |
tree | f13875c92a1b0cd5ba8d925ac5f2c6413e9ccc6d /src/app/volumeAction.cpp | |
parent | 5e965846d17f7053dca99f3366ce5d8f21e8f649 (diff) | |
download | codeine-ed55bf072682ebf73239e74b7e3dd286ed5616a5.tar.gz codeine-ed55bf072682ebf73239e74b7e3dd286ed5616a5.zip |
Use nullptr instead of NULL/0 pointer in C++ files
See: https://mirror.git.trinitydesktop.org/gitea/TDE/tde/issues/73
Signed-off-by: mio <[email protected]>
Diffstat (limited to 'src/app/volumeAction.cpp')
-rw-r--r-- | src/app/volumeAction.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app/volumeAction.cpp b/src/app/volumeAction.cpp index e48dc27..ad585ef 100644 --- a/src/app/volumeAction.cpp +++ b/src/app/volumeAction.cpp @@ -48,8 +48,8 @@ public: VolumeAction::VolumeAction( TDEToolBar *bar, TDEActionCollection *ac ) - : TDEToggleAction( i18n("Volume"), "volume", TQt::Key_1, 0, 0, ac, "volume" ) - , m_anchor( 0 ) + : TDEToggleAction( i18n("Volume"), "volume", TQt::Key_1, nullptr, nullptr, ac, "volume" ) + , m_anchor( nullptr ) { m_widget = new VolumeSlider( bar->topLevelWidget() ); |