Re-define the catch-all conversion format from XPM to PPM, although

personally I'm still of the opinion that people too lazy to define
their own get what they deserve ;-)


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5947 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2003-01-13 23:03:48 +00:00
parent 5e45378782
commit 1106989d36
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2003-01-13 Angus Leeming <leeming@lyx.org>
* GraphicsCacheItem.C (findTargetFormat): define the default conversion
format to be PPM not XPM.
2002-12-17 Lars Gullik Bjønnes <larsbj@gullik.net>
* Makefile.am (EXTRA_DIST): remove variable

View File

@ -343,9 +343,9 @@ string const findTargetFormat(string const & from)
<< " to " << *it << std::endl;
}
// Failed! so we have to try to convert it to XPM format
// Failed! so we have to try to convert it to PPM format
// with the standard converter
return string("xpm");
return string("ppm");
}
} // anon namespace