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:
Lars Gullik Bjønnes 1999-11-03 17:08:12 +00:00
parent a363f39946
commit 3b94fd86f3
2 changed files with 9 additions and 3 deletions

View File

@ -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.

View File

@ -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);
}