FileName::checksum(): Don't warn if file exists as this happens for all graphics at first document compilation.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22168 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Abdelrazak Younes 2007-12-16 11:53:52 +00:00
parent f2f7ec1a05
commit 17b57a48a4

View File

@ -422,7 +422,7 @@ extern unsigned long sum(char const * file);
unsigned long FileName::checksum() const
{
if (!exists()) {
LYXERR0("File \"" << absFilename() << "\" does not exist!");
//LYXERR0("File \"" << absFilename() << "\" does not exist!");
return 0;
}
// a directory may be passed here so we need to test it. (bug 3622)