diff options
Diffstat (limited to 'src/mergeelements.cpp')
-rw-r--r-- | src/mergeelements.cpp | 6 |
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 */ |