phonesettings/cpphonesettingsplugins/telephonyplugin/src/cptelephonyplugin.cpp
changeset 22 6bb1b21d2484
parent 21 92ab7f8d0eab
child 27 2f8f8080a020
equal deleted inserted replaced
21:92ab7f8d0eab 22:6bb1b21d2484
    35 
    35 
    36     // Uninstall plugin specific msg handler
    36     // Uninstall plugin specific msg handler
    37     UNINSTALL_TRACE_MSG_HANDLER; 
    37     UNINSTALL_TRACE_MSG_HANDLER; 
    38 }
    38 }
    39 
    39 
    40 CpSettingFormItemData *CpTelephonyPlugin::createSettingFormItemData(
    40 QList<CpSettingFormItemData*> CpTelephonyPlugin::createSettingFormItemData(
    41     CpItemDataHelper &itemDataHelper) const
    41         CpItemDataHelper &itemDataHelper) const
    42 {
    42 {
    43     DPRINT;
    43     DPRINT;
    44     return new CpSettingFormEntryItemDataImpl<CpTelephonyPluginView>(
    44 
    45             itemDataHelper, hbTrId("Telephony"), hbTrId(""));
    45     QList<CpSettingFormItemData*> ret;
       
    46     ret.append(new CpSettingFormEntryItemDataImpl<CpTelephonyPluginView>(
       
    47             itemDataHelper, hbTrId("Telephony"), hbTrId("")));
       
    48     return ret;
    46 }
    49 }
    47 
    50 
    48 Q_EXPORT_PLUGIN2(cptelephonyplugin, CpTelephonyPlugin);
    51 Q_EXPORT_PLUGIN2(cptelephonyplugin, CpTelephonyPlugin);
    49 
    52 
    50 
    53