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:
Jean-Marc Lasgouttes 2003-01-08 17:23:25 +00:00
parent 25cebf4af3
commit 986da292f8
2 changed files with 6 additions and 1 deletions

View File

@ -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

View File

@ -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");