mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
mathed60.diff one hunk of prev apllied code rejected
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1775 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
a27892b6c8
commit
017805b341
@ -85,6 +85,13 @@ MathedRowContainer::iterator MathedRowContainer::begin()
|
||||
return iterator(this);
|
||||
}
|
||||
|
||||
MathedRowContainer::iterator MathedRowContainer::end()
|
||||
{
|
||||
iterator it(this);
|
||||
it.pos_ = data_.size();
|
||||
return it;
|
||||
}
|
||||
|
||||
bool MathedRowContainer::empty() const
|
||||
{
|
||||
return data_.size() == 0;
|
||||
|
@ -96,6 +96,8 @@ public:
|
||||
public:
|
||||
///
|
||||
iterator begin();
|
||||
///
|
||||
iterator end();
|
||||
///
|
||||
bool empty() const;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user