summaryrefslogtreecommitdiffstats
path: root/khexedit/hexbuffer.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2026-01-05 23:29:57 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2026-01-05 23:29:57 +0900
commitbdb0aa04da758449d8b82e90f00cae94593146da (patch)
treeca15dd3a8f3ee84e5cc38a33d3450ed28b9cb531 /khexedit/hexbuffer.cpp
parent1dbf304d3b6ff07b17dfc6163c2d5046a8b13e47 (diff)
downloadtdeutils-bdb0aa04da758449d8b82e90f00cae94593146da.tar.gz
tdeutils-bdb0aa04da758449d8b82e90f00cae94593146da.zip
Replace TRUE/FALSE with boolean values true/falseHEADmaster
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'khexedit/hexbuffer.cpp')
-rw-r--r--khexedit/hexbuffer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/khexedit/hexbuffer.cpp b/khexedit/hexbuffer.cpp
index 83cfa84..7614256 100644
--- a/khexedit/hexbuffer.cpp
+++ b/khexedit/hexbuffer.cpp
@@ -549,8 +549,8 @@ CHexBuffer::CHexBuffer( void )
mUndoLimit = 10;
mUndoIndex = 0;
- mUndoList.setAutoDelete( TRUE );
- mBookmarkList.setAutoDelete( TRUE );
+ mUndoList.setAutoDelete( true );
+ mBookmarkList.setAutoDelete( true );
}