qtmobility/plugins/multimedia/symbian/mmf/radio/s60radiotunerservice.cpp
changeset 14 6fbed849b4f4
parent 11 06b8e2af4411
equal deleted inserted replaced
11:06b8e2af4411 14:6fbed849b4f4
    51 S60RadioTunerService::~S60RadioTunerService()
    51 S60RadioTunerService::~S60RadioTunerService()
    52 {
    52 {
    53 	delete m_playerControl;
    53 	delete m_playerControl;
    54 }
    54 }
    55 
    55 
    56 QMediaControl *S60RadioTunerService::control(const char* name) const
    56 QMediaControl *S60RadioTunerService::requestControl(const char* name)
    57 {
    57 {
    58 	if (qstrcmp(name, QRadioTunerControl_iid) == 0)
    58 	if (qstrcmp(name, QRadioTunerControl_iid) == 0)
    59 		return m_playerControl;
    59 		return m_playerControl;
    60 
    60 
    61 	return 0;
    61 	return 0;
    62 }
    62 }
    63 
    63 
       
    64 void S60RadioTunerService::releaseControl(QMediaControl *control)
       
    65 {
       
    66 	Q_UNUSED(control);
       
    67 }