summaryrefslogtreecommitdiffstats
path: root/src/mergeelements.cpp
diff options
context:
space:
mode:
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 5137f59..f7068c1 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 */