summaryrefslogtreecommitdiffstats
path: root/src/app/adjustSizeButton.cpp
diff options
context:
space:
mode:
authormio <stigma@disroot.org>2024-08-22 19:34:23 +1000
committermio <stigma@disroot.org>2024-08-22 23:15:20 +1000
commited55bf072682ebf73239e74b7e3dd286ed5616a5 (patch)
treef13875c92a1b0cd5ba8d925ac5f2c6413e9ccc6d /src/app/adjustSizeButton.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 <stigma@disroot.org>
Diffstat (limited to 'src/app/adjustSizeButton.cpp')
-rw-r--r--src/app/adjustSizeButton.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/adjustSizeButton.cpp b/src/app/adjustSizeButton.cpp
index fa691d9..1f4b801 100644
--- a/src/app/adjustSizeButton.cpp
+++ b/src/app/adjustSizeButton.cpp
@@ -48,7 +48,7 @@ namespace Codeine
m_thingy->setPaletteForegroundColor( paletteBackgroundColor().dark() );
TQEvent e( TQEvent::Resize );
- eventFilter( 0, &e );
+ eventFilter( nullptr, &e );
adjustSize();
show();