bluetoothengine/btui/btdevsettingframework/src/btabstractdevsetting.cpp
changeset 41 0b2439c3e397
parent 40 997690c3397a
equal deleted inserted replaced
40:997690c3397a 41:0b2439c3e397
    56 {
    56 {
    57     return false;
    57     return false;
    58 }
    58 }
    59 
    59 
    60 /*!
    60 /*!
    61  Gets a \code HbWidget \endcode instance which consists of the
    61  Gets a \code HbDataForm \endcode instance which consists of the
    62  setting UI from this specific plugin. The loader of this plugin will
    62  setting UI from this specific plugin. The loader of this plugin will
    63  add this widget into its setting view if its setting is available at
    63  add this dataform into its setting view if its setting is available at
    64  a time.
    64  the time.
    65  
    65  
    66  The ownership of this widget is not transferred. That is, the plugin 
    66  The ownership of this widget is not transferred. That is, the plugin 
    67  is responsible to free it at plugin destruction.
    67  is responsible to free it at plugin destruction.
    68  
    68  
    69  The default implementation returns 0. 
    69  The default implementation returns 0. 
    70 
    70 
    71  \return an \code HbWidget \endcode instance.
    71  \return an \code HbDataForm \endcode instance.
    72  */
    72  */
    73 HbWidget *BtAbstractDevSetting::getSettingWidget()
    73 HbDataForm *BtAbstractDevSetting::getSettingWidget()
    74 {
    74 {
    75     return 0;
    75     return 0;
    76 }
    76 }
    77 
    77 
    78 /*!
    78 /*!