Christian --- thanks for your reply.
>> Your class has to inherit from QObject or a subclass for using properties <<
It does: my ListViewItem class inherits from both QListViewItem and a class of my own named Story.
Story inherits from QObject and uses properties.
This works fine -- but not for ListViewItem. When called on a ListViewItem object, for example, metaObject()->findProperty(), for example, never finds anything.
Mysteriously, I can set property values for a ListViewItem using a set method and then get the property using property().
Sam