Properly initialize variable. This should fix the problem

reported here:
	http://marc.info/?l=lyx-devel&m=133775786222603&w=2
by Scott.
This commit is contained in:
Richard Heck 2012-05-31 12:02:21 -04:00
parent 262c2e95a9
commit be89d37bd4

View File

@ -99,7 +99,7 @@ Converter::Converter(string const & f, string const & t,
string const & c, string const & l)
: from(f), to(t), command(c), flags(l),
From(0), To(0), latex(false), xml(false),
need_aux(false)
need_aux(false), nice(false)
{}