mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-23 22:46:16 -04:00
Added windows for phone call, messages, calendar and alarm clock vibration and audio settings.
15 lines
493 B
C++
15 lines
493 B
C++
// Copyright (c) 2017-2021, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
#include "MessageSoundWindow.hpp"
|
|
#include "application-settings-new/ApplicationSettings.hpp"
|
|
#include <i18n/i18n.hpp>
|
|
|
|
namespace gui
|
|
{
|
|
MessageSoundWindow::MessageSoundWindow(app::Application *app) : BaseSettingsWindow(app, window::name::message_sound)
|
|
{
|
|
setTitle(utils::localize.get("app_settings_message_sound"));
|
|
}
|
|
} // namespace gui
|