void ItemRecyclingList::setListItemCaching(bool enabled)
{
#if (QT_VERSION >= 0x040600)
    ListItemContainer *container =
        static_cast<ListItemContainer *>(m_container);
    container->setListItemCaching(enabled);
#else
    Q_UNUSED(enabled)
#endif
}
Beispiel #2
0
void ItemRecyclingList::setListItemCaching(bool enabled)
{
    ListItemContainer *container =
        static_cast<ListItemContainer *>(m_container);
    container->setListItemCaching(enabled);
}