~aleteoryx/muditaos

ref: ce1d8cc63ae32e21dc87ddd00f0ffb77183565db muditaos/module-apps/application-settings-new/windows/ChangeTimeZone.cpp -rw-r--r-- 432 bytes
ce1d8cc6 — Pawel Olejniczak [EGD-4339] Refactor AllDevices and PhoneName windows 5 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "ChangeTimeZone.hpp"

#include <application-settings-new/ApplicationSettings.hpp>

namespace gui
{

    ChangeTimeZone::ChangeTimeZone(app::Application *app) : BaseSettingsWindow(app, window::name::change_date_and_time)
    {
        setTitle(utils::localize.get("app_settings_date_and_time_time_zone"));
    }

    std::list<Option> ChangeTimeZone::buildOptionsList()
    {
        return {};
    }

} // namespace gui