![]() |
От: |
Dale_ee
|
www.ammyui.com |
Дата: | 10.03.04 11:26 | ||
Оценка: |
_Section *s = m_Section;
_Section *prev,*next;
while(s)
{
if(s->next)
{
if(s->next->id == sid)
{
prev = s;
if(s->next->next)
{
next = s->next->next;
}
delete s->next;
prev->next = next;
break;
}
}
}