mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
Fix crash after reconfigure.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1454 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
7da86a418e
commit
9e41aa715e
@ -1,3 +1,7 @@
|
|||||||
|
2001-02-07 Dekel Tsur <dekelts@tau.ac.il>
|
||||||
|
|
||||||
|
* lyxrc.C (read): Update converters data-structures.
|
||||||
|
|
||||||
2001-02-07 Lars Gullik Bjønnes <larsbj@lyx.org>
|
2001-02-07 Lars Gullik Bjønnes <larsbj@lyx.org>
|
||||||
|
|
||||||
* LaTeX.h (operator!=): add operator != for Aux_Info
|
* LaTeX.h (operator!=): add operator != for Aux_Info
|
||||||
|
@ -413,10 +413,6 @@ void LyX::init(int */*argc*/, char **argv, bool gui)
|
|||||||
if (!ReadRcFile("preferences"))
|
if (!ReadRcFile("preferences"))
|
||||||
ReadRcFile("lyxrc");
|
ReadRcFile("lyxrc");
|
||||||
|
|
||||||
/// Init Converter
|
|
||||||
converters.Update(formats);
|
|
||||||
converters.BuildGraph();
|
|
||||||
|
|
||||||
// Read encodings
|
// Read encodings
|
||||||
ReadEncodingsFile("encodings");
|
ReadEncodingsFile("encodings");
|
||||||
// Read languages
|
// Read languages
|
||||||
|
@ -916,6 +916,10 @@ int LyXRC::read(string const & filename)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Update converters data-structures
|
||||||
|
converters.Update(formats);
|
||||||
|
converters.BuildGraph();
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user