Hi,

I'm loading all notes after document loading with an iterator:


SwFieldType* pType = mpView->GetDocShell()->GetDoc()->GetFldType(RES_POSTITFLD, aEmptyStr,false);
SwClientIter aIter( *pType );
SwClient * pFirst = aIter.GoStart();
while(pFirst)
{
        .......
        pFirst = aIter++;
}

If I have three notes directly behind each other(let's call them 1,2,3), I get 1,3,2 returned instead by the iterator.

I understand that they all have the same visual cursor rect position, but still we know they are behind each other by node position or similar black writer core magic ;-)

As I would really need this to give me the right order for implementing answers for notes, a fix or at least some pointers would be great.

Best regards
Max


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to