summaryrefslogtreecommitdiffstats
path: root/src/mergeelements.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-03-28 12:35:55 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-03-28 12:35:55 +0900
commit278778f1151c2c3b4fade15afc7b94f624900b60 (patch)
tree3e5556534dce8216383a1026da88bfaef179ecc7 /src/mergeelements.cpp
parent15710da5567c0dcf1291d09cb869ef1bf6d08541 (diff)
downloadkbibtex-278778f1151c2c3b4fade15afc7b94f624900b60.tar.gz
kbibtex-278778f1151c2c3b4fade15afc7b94f624900b60.zip
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/mergeelements.cpp')
-rw-r--r--src/mergeelements.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mergeelements.cpp b/src/mergeelements.cpp
index 9eb2487..8120212 100644
--- a/src/mergeelements.cpp
+++ b/src/mergeelements.cpp
@@ -761,11 +761,11 @@ namespace KBibTeX
{
MergeElementsCliqueItem *meci = dynamic_cast<MergeElementsCliqueItem*>( item );
if ( meci != NULL && meci->entry != NULL )
- KBibTeX::EntryWidget::execute( meci->entry, NULL, TRUE, FALSE, this );
+ KBibTeX::EntryWidget::execute( meci->entry, NULL, true, false, this );
else if ( meci != NULL && meci->macro != NULL )
- KBibTeX::MacroWidget::execute( meci->macro, TRUE, this );
+ KBibTeX::MacroWidget::execute( meci->macro, true, this );
else if ( meci!=NULL&& meci->preamble!=NULL )
- KBibTeX::PreambleWidget::execute( meci->preamble, TRUE, this );
+ KBibTeX::PreambleWidget::execute( meci->preamble, true, this );
}
/* This function was taken form TDEMainWindow of KDE 3.5 and modified to fit KBibTeX */