mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
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:
parent
d8dd55eb33
commit
33e3c61a31
@ -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.
|
||||
|
@ -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;
|
||||
///
|
||||
|
@ -49,8 +49,8 @@ public:
|
||||
///
|
||||
ParIterator(DocIterator const &);
|
||||
|
||||
///
|
||||
void operator=(ParIterator const &);
|
||||
/// This really should be implemented...
|
||||
//void operator=(ParIterator const &);
|
||||
///
|
||||
ParIterator & operator++();
|
||||
///
|
||||
|
Loading…
Reference in New Issue
Block a user