mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-11 03:03:06 +00:00
fix file>import menu
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5923 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
25cebf4af3
commit
986da292f8
@ -1,3 +1,8 @@
|
||||
2003-01-08 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
|
||||
|
||||
* importer.C (Loaders): do not preallocate 3 elements in the
|
||||
vector, since one ends up with 6 elements otherwise
|
||||
|
||||
2002-12-20 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
|
||||
|
||||
* DepTable.C (write): write the file name as last element of the
|
||||
|
@ -116,7 +116,7 @@ vector<Format const *> const Importer::GetImportableFormats()
|
||||
|
||||
vector<string> const Importer::Loaders()
|
||||
{
|
||||
vector<string> v(3);
|
||||
vector<string> v;
|
||||
v.push_back("lyx");
|
||||
v.push_back("text");
|
||||
v.push_back("textparagraph");
|
||||
|
Loading…
Reference in New Issue
Block a user