summaryrefslogtreecommitdiffstats
path: root/kedit
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 /kedit
parent1dbf304d3b6ff07b17dfc6163c2d5046a8b13e47 (diff)
downloadtdeutils-master.tar.gz
tdeutils-master.zip
Replace TRUE/FALSE with boolean values true/falseHEADmaster
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kedit')
-rw-r--r--kedit/kedit.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kedit/kedit.cpp b/kedit/kedit.cpp
index c027328..1e3de43 100644
--- a/kedit/kedit.cpp
+++ b/kedit/kedit.cpp
@@ -67,7 +67,7 @@ TopLevel::TopLevel (TQWidget *, const char *name)
if (!windowList)
{
windowList = new TQPtrList<TopLevel>;
- windowList->setAutoDelete( FALSE );
+ windowList->setAutoDelete( false );
}
windowList->append( this );
@@ -344,7 +344,7 @@ void TopLevel::insertDate(){
eframe->getCursorPosition(&line,&column);
eframe->insertAt(string,line,column);
- eframe->setModified(TRUE);
+ eframe->setModified(true);
statusbar_slot();
}
@@ -352,7 +352,7 @@ void TopLevel::insertDate(){
void TopLevel::paste(){
eframe->paste();
- eframe->setModified(TRUE);
+ eframe->setModified(true);
statusbar_slot();
}
@@ -361,7 +361,7 @@ void TopLevel::paste(){
void TopLevel::cut(){
eframe->cut();
- eframe->setModified(TRUE);
+ eframe->setModified(true);
statusbar_slot();
}
@@ -708,7 +708,7 @@ void TopLevel::setGeneralStatusField(const TQString &text){
statusbar_timer->stop();
statusBar()->changeItem(text,ID_GENERAL);
- statusbar_timer->start(10000,TRUE); // single shot
+ statusbar_timer->start(10000,true); // single shot
}