mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
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:
parent
06d65218c0
commit
b1546aa703
@ -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 << ")");
|
||||
}
|
||||
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user