mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
Squash warning from my compiler.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3835 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
93fb0890fa
commit
a351157fc6
@ -1,3 +1,7 @@
|
||||
2002-03-26 Angus Leeming <a.leeming@ic.ac.uk>
|
||||
|
||||
* ControlRef.C (getBufferNum): squash warning message.
|
||||
|
||||
2002-03-22 Angus Leeming <a.leeming@ic.ac.uk>
|
||||
|
||||
* ControlBibtex.C (Browse):
|
||||
|
@ -85,7 +85,7 @@ int ControlRef::getBufferNum() const
|
||||
find(buffers.begin(), buffers.end(), name);
|
||||
if (cit == buffers.end())
|
||||
return 0;
|
||||
return cit - buffers.begin();
|
||||
return int(cit - buffers.begin());
|
||||
}
|
||||
|
||||
string const ControlRef::getBufferName(int num) const
|
||||
|
Loading…
Reference in New Issue
Block a user