You are not logged in.

Dear visitor, welcome to QtForum.org. If this is your first visit here, please read the Help. It explains in detail how this page works. To use all features of this page, you should consider registering. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.

vini

Unregistered

1

Thursday, February 17th 2005, 6:00pm

how to move int value...

how to move the int value (return of size() ) to the QListViewItem in Qt

jacek

Master

  • "jacek" is male

Posts: 2,729

Location: Warsaw, Poland

  • Send private message

2

Thursday, February 17th 2005, 6:09pm

RE: how to move int value...

If you have a pointer to that QListViewItem, you can do this using QListViewItem::setText --- you will only have to make a QString from that int (using QString::number static method).