equal
deleted
inserted
replaced
58 } |
58 } |
59 |
59 |
60 void CpSampleView::sliderValueChanged(int value) |
60 void CpSampleView::sliderValueChanged(int value) |
61 { |
61 { |
62 //TODO: store your changes |
62 //TODO: store your changes |
63 HbMessageBox::launchInformationMessageBox(QString("slider value changed to:%1").arg(value)); |
63 // HbMessageBox::message(QString("slider value changed to:%1").arg(value)); |
64 } |
64 } |
65 void CpSampleView::checkBoxStateChanged(int state) |
65 void CpSampleView::checkBoxStateChanged(int state) |
66 { |
66 { |
67 //TODO: store your changes |
67 //TODO: store your changes |
68 QString str = (state ? "checked" : "un-checked"); |
68 QString str = (state ? "checked" : "un-checked"); |
69 HbMessageBox::launchInformationMessageBox(str); |
69 // HbMessageBox::message(str); |
70 } |
70 } |
71 |
71 |