diff options
author | Andreas Kling <kling@serenityos.org> | 2021-04-04 17:55:50 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-04-04 17:55:50 +0200 |
commit | 0069020e6c40be02416f9ee4333fc752172113ea (patch) | |
tree | 95a4bf03a6630439a5043b483c3c31209e8aafc0 /Userland/Libraries/LibJS/Runtime | |
parent | dabfeb6dd80ec0cb053b9c087fe249c88b1a48c6 (diff) | |
download | serenity-0069020e6c40be02416f9ee4333fc752172113ea.zip |
WindowServer+LibGUI: Rename WindowType::MenuApplet => Applet
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/Date.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/Date.h b/Userland/Libraries/LibJS/Runtime/Date.h index ffc68faa75..1b2b0c3abc 100644 --- a/Userland/Libraries/LibJS/Runtime/Date.h +++ b/Userland/Libraries/LibJS/Runtime/Date.h @@ -85,7 +85,7 @@ public: String gmt_date_string() const; String iso_date_string() const; - // FIXME: One day, implement real locale support. Until then, everyone gets what the Clock MenuApplet displays. + // FIXME: One day, implement real locale support. Until then, everyone gets what the Clock Applet displays. String locale_date_string() const { return m_datetime.to_string("%Y-%m-%d"); } String locale_string() const { return m_datetime.to_string(); } String locale_time_string() const { return m_datetime.to_string("%H:%M:%S"); } |