mirror of
https://github.com/SimpleMobileTools/Simple-Clock.git
synced 2024-12-15 09:53:57 +01:00
adding some type checks at updating viepager fragments
This commit is contained in:
parent
8005fe1fae
commit
3a95fe601b
@ -39,14 +39,14 @@ class ViewPagerAdapter(fm: FragmentManager) : FragmentStatePagerAdapter(fm) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fun updateClockTabAlarm() {
|
fun updateClockTabAlarm() {
|
||||||
(fragments[TAB_CLOCK] as ClockFragment).updateAlarm()
|
(fragments[TAB_CLOCK] as? ClockFragment)?.updateAlarm()
|
||||||
}
|
}
|
||||||
|
|
||||||
fun updateAlarmTabAlarmSound(alarmSound: AlarmSound) {
|
fun updateAlarmTabAlarmSound(alarmSound: AlarmSound) {
|
||||||
(fragments[TAB_ALARM] as AlarmFragment).updateAlarmSound(alarmSound)
|
(fragments[TAB_ALARM] as? AlarmFragment)?.updateAlarmSound(alarmSound)
|
||||||
}
|
}
|
||||||
|
|
||||||
fun updateTimerTabAlarmSound(alarmSound: AlarmSound) {
|
fun updateTimerTabAlarmSound(alarmSound: AlarmSound) {
|
||||||
(fragments[TAB_TIMER] as TimerFragment).updateAlarmSound(alarmSound)
|
(fragments[TAB_TIMER] as? TimerFragment)?.updateAlarmSound(alarmSound)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user