mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
pass with c_str from compare to compare
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@287 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
a363f39946
commit
3b94fd86f3
@ -1,3 +1,9 @@
|
||||
1999-11-03 Lars Gullik Bjønnes <larsbj@lyx.org>
|
||||
|
||||
* src/support/lyxstring.C (compare): pass c_str()
|
||||
(compare): pass c_str
|
||||
(compare): pass c_str
|
||||
|
||||
1999-11-03 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
|
||||
|
||||
* src/support/DebugStream.C: <config.h> was not included correctly.
|
||||
|
@ -1418,7 +1418,7 @@ int lyxstring::compare(lyxstring const & str) const
|
||||
{
|
||||
TestlyxstringInvariant(this);
|
||||
|
||||
return compare(0, rep->sz, str.rep->s, str.rep->sz);
|
||||
return compare(0, rep->sz, str.c_str(), str.rep->sz);
|
||||
}
|
||||
|
||||
|
||||
@ -1435,7 +1435,7 @@ int lyxstring::compare(size_type pos, size_type n, lyxstring const & str) const
|
||||
{
|
||||
TestlyxstringInvariant(this);
|
||||
|
||||
return compare(pos, n, str.rep->s, str.rep->sz);
|
||||
return compare(pos, n, str.c_str(), str.rep->sz);
|
||||
}
|
||||
|
||||
|
||||
@ -1444,7 +1444,7 @@ int lyxstring::compare(size_type pos, size_type n, lyxstring const & str,
|
||||
{
|
||||
TestlyxstringInvariant(this);
|
||||
|
||||
return compare(pos, n, str.rep->s + pos2, n2);
|
||||
return compare(pos, n, str.c_str() + pos2, n2);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user