From: Abdelrazak Younes Date: Mon, 25 Feb 2008 09:02:35 +0000 (+0000) Subject: Cleanup header. X-Git-Tag: 1.6.10~6098 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=477366d8eefa624d9e866a042f0e8ef3b9dbd38f;p=features.git Cleanup header. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23221 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/WordList.cpp b/src/WordList.cpp index c5fef21167..a5a8f4a78f 100644 --- a/src/WordList.cpp +++ b/src/WordList.cpp @@ -10,19 +10,14 @@ #include -#include - -#include -#include -#include -#include +#include "WordList.h" -#include +#include "support/convert.h" +#include "support/debug.h" +#include "support/docstring.h" +#include "support/weighted_btree.h" -#include -#include -#include -#include +#include namespace lyx { @@ -58,8 +53,7 @@ WordList::~WordList() docstring const & WordList::word(size_t idx) const { - Impl::Words::const_iterator it - = d->words_.find_summed_weight(idx); + Impl::Words::const_iterator it = d->words_.find_summed_weight(idx); BOOST_ASSERT(it != d->words_.end()); return it->first; }