fix one ambiguity, and comment out a un-implemented operator

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9263 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Lars Gullik Bjønnes 2004-11-17 00:54:18 +00:00
parent d8dd55eb33
commit 33e3c61a31
3 changed files with 11 additions and 3 deletions

View File

@ -1,3 +1,11 @@
2004-11-17 Lars Gullik Bjonnes <larsbj@gullik.net>
* pariterator.h (operatir=): comment out un-implemented member
function.
* paragraph.h: resolv ambiguity found by gcc 4.0 with the use of a
static cast.
2004-11-17 Lars Gullik Bjonnes <larsbj@gullik.net>
* lyxfont.h: include LColor.h to satisfy concept checks.

View File

@ -328,7 +328,7 @@ public:
///
bool isHfill(lyx::pos_type pos) const;
/// hinted by profiler
bool isInset(lyx::pos_type pos) const { return getChar(pos) == META_INSET; }
bool isInset(lyx::pos_type pos) const { return getChar(pos) == static_cast<value_type>(META_INSET); }
///
bool isNewline(lyx::pos_type pos) const;
///

View File

@ -49,8 +49,8 @@ public:
///
ParIterator(DocIterator const &);
///
void operator=(ParIterator const &);
/// This really should be implemented...
//void operator=(ParIterator const &);
///
ParIterator & operator++();
///