void tst_QPlaceCategory::nameTest() { QPlaceCategory testObj; QVERIFY2(testObj.name() == QString(), "Wrong default value"); testObj.setName("testText"); QVERIFY2(testObj.name() == "testText", "Wrong value returned"); }
/*! \qmlproperty QPlaceCategory Category::category \target Category::category For details on how to use this property to interface between C++ and QML see "\l {location-cpp-qml.html#category} {Interfaces between C++ and QML Code}". */ void QDeclarativeCategory::setCategory(const QPlaceCategory &category) { QPlaceCategory previous = m_category; m_category = category; if (category.name() != previous.name()) emit nameChanged(); if (category.categoryId() != previous.categoryId()) emit categoryIdChanged(); if (m_icon && m_icon->parent() == this) { m_icon->setPlugin(m_plugin); m_icon->setIcon(m_category.icon()); } else if (!m_icon || m_icon->parent() != this) { m_icon = new QDeclarativePlaceIcon(m_category.icon(), m_plugin, this); emit iconChanged(); } }