| 69 | } |
| 70 | |
| 71 | bool isTimeFormat24Hour() { |
| 72 | SystemSettings properties; |
| 73 | if (!loadSystemSettings(properties)) { |
| 74 | return true; |
| 75 | } else { |
| 76 | return properties.timeFormat24h; |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | void setTimeFormat24Hour(bool show24Hour) { |
| 81 | SystemSettings properties; |
no test coverage detected