summaryrefslogtreecommitdiffstats
path: root/src/app/playDialog.cpp
diff options
context:
space:
mode:
authormio <[email protected]>2024-08-22 19:34:23 +1000
committermio <[email protected]>2024-08-22 23:15:20 +1000
commited55bf072682ebf73239e74b7e3dd286ed5616a5 (patch)
treef13875c92a1b0cd5ba8d925ac5f2c6413e9ccc6d /src/app/playDialog.cpp
parent5e965846d17f7053dca99f3366ce5d8f21e8f649 (diff)
downloadcodeine-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/playDialog.cpp')
-rw-r--r--src/app/playDialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/playDialog.cpp b/src/app/playDialog.cpp
index 60ab979..8c40520 100644
--- a/src/app/playDialog.cpp
+++ b/src/app/playDialog.cpp
@@ -93,7 +93,7 @@ PlayDialog::createRecentFileWidget( TQBoxLayout *layout )
for( KURL::List::ConstIterator it = urls.begin(), end = urls.end(); it != end; ++it ) {
const TQString fileName = (*it).fileName();
- new TDEListViewItem( lv, 0, (*it).url(), fileName.isEmpty() ? (*it).prettyURL() : fileName );
+ new TDEListViewItem( lv, nullptr, (*it).url(), fileName.isEmpty() ? (*it).prettyURL() : fileName );
}
if( lv->childCount() ) {