On Wednesday 30 May 2001 09:08, you wrote:
> When I use QListViewItem, I got an unexpected result.
> Here is a simple sample code. In this sample,
> the order of items which I add is 'Europe', 'Asia'.
> But I got the order of items which is 'Asia', 'Europe'.
>
>

Not really unexpected: unless you explicitly tell the listview
or listviewitem after which item the new item should be placed,
it's placed first. Its the difference between

QListViewItem ( QListView * parent ) 
QListViewItem ( QListViewItem * parent ) 

and

QListViewItem ( QListView * parent, QListViewItem * after ) 
QListViewItem ( QListViewItem * parent, QListViewItem * after ) 

If you want to always insert your item as the last item in 
a branch, you'll have to keep track of which item is the
previous last.


_______________________________________________
PyKDE mailing list    [EMAIL PROTECTED]
http://mats.gmd.de/mailman/listinfo/pykde

Reply via email to