mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-14 06:57:01 +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);
|
return iterator(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
MathedRowContainer::iterator MathedRowContainer::end()
|
||||||
|
{
|
||||||
|
iterator it(this);
|
||||||
|
it.pos_ = data_.size();
|
||||||
|
return it;
|
||||||
|
}
|
||||||
|
|
||||||
bool MathedRowContainer::empty() const
|
bool MathedRowContainer::empty() const
|
||||||
{
|
{
|
||||||
return data_.size() == 0;
|
return data_.size() == 0;
|
||||||
|
@ -97,6 +97,8 @@ public:
|
|||||||
///
|
///
|
||||||
iterator begin();
|
iterator begin();
|
||||||
///
|
///
|
||||||
|
iterator end();
|
||||||
|
///
|
||||||
bool empty() const;
|
bool empty() const;
|
||||||
|
|
||||||
/// insert item before 'it'
|
/// insert item before 'it'
|
||||||
|
Loading…
Reference in New Issue
Block a user