* WordLangTuple.h: better initialization.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33379 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jürgen Spitzmüller 2010-02-09 11:52:06 +00:00
parent 707935ab23
commit aaaf6acb2d

View File

@ -30,10 +30,8 @@ public:
WordLangTuple() {} WordLangTuple() {}
WordLangTuple(docstring const & w, Language * l) WordLangTuple(docstring const & w, Language * l)
: word_(w) : word_(w), lang_(l)
{ {}
lang_ = l;
}
/// return the word /// return the word
docstring const & word() const { docstring const & word() const {