Re: r33378 - in lyx-devel/trunk/src: . frontends/qt4

2010-02-09 Thread Jürgen Spitzmüller
Jean-Marc Lasgouttes wrote: > > + WordLangTuple(docstring const & w, Language * l) > > + : word_(w) > > + { > > + lang_ = l; > > + } > > Why don't you initialize lang_ along with word_? I got a compile error. But it doesn't do now, so I'll change that. Jürgen

Re: r33378 - in lyx-devel/trunk/src: . frontends/qt4

2010-02-09 Thread Jean-Marc Lasgouttes
> Log: > * store the full Language in WordLangTuple. Very good. > + WordLangTuple(docstring const & w, Language * l) > + : word_(w) > + { > + lang_ = l; > + } Why don't you initialize lang_ along with word_? JMarc