MSVC compile fix.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21858 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Abdelrazak Younes 2007-11-29 09:00:28 +00:00
parent 06d65218c0
commit b1546aa703
2 changed files with 3 additions and 2 deletions

View File

@ -96,7 +96,8 @@ void Changes::set(Change const & change, pos_type const start, pos_type const en
{
if (change.type != Change::UNCHANGED) {
LYXERR(Debug::CHANGES, "setting change (type: " << change.type
<< ", author: " << change.author << ", time: " << change.changetime
<< ", author: " << change.author
<< ", time: " << long(change.changetime)
<< ") in range (" << start << ", " << end << ")");
}

View File

@ -69,7 +69,7 @@ public:
cache_name = FileName(addName(cache_dir.absFilename(), os.str()));
LYXERR(Debug::FILES, "Add file cache item " << orig_from
<< ' ' << to_format << ' ' << cache_name
<< ' ' << timestamp << ' ' << checksum << '.');
<< ' ' << long(timestamp) << ' ' << checksum << '.');
}
~CacheItem() {}
FileName cache_name;