diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-05-21 15:16:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-21 15:16:41 +0200 |
commit | 26e0cc7aa36de99ad2f915388cd57bd94df4b66e (patch) | |
tree | e066cae5309b5d15bfc7c9be630c0b9e8cf1b03d /platform/uwp | |
parent | e3ead06c1d16cc1e7a0b4bd0434605cfa4f2eb3f (diff) | |
parent | f78baa5f936cce8cff7359131a1e082cf6300c8b (diff) |
Merge pull request #29041 from hbina/add_const
add const to methods that return literals
Diffstat (limited to 'platform/uwp')
-rw-r--r-- | platform/uwp/os_uwp.cpp | 2 | ||||
-rw-r--r-- | platform/uwp/os_uwp.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/platform/uwp/os_uwp.cpp b/platform/uwp/os_uwp.cpp index 1678d351b3..f9d22481dd 100644 --- a/platform/uwp/os_uwp.cpp +++ b/platform/uwp/os_uwp.cpp @@ -530,7 +530,7 @@ OS::VideoMode OS_UWP::get_video_mode(int p_screen) const { void OS_UWP::get_fullscreen_mode_list(List<VideoMode> *p_list, int p_screen) const { } -String OS_UWP::get_name() { +String OS_UWP::get_name() const { return "UWP"; } diff --git a/platform/uwp/os_uwp.h b/platform/uwp/os_uwp.h index 7b00224017..1bb68bc75d 100644 --- a/platform/uwp/os_uwp.h +++ b/platform/uwp/os_uwp.h @@ -195,7 +195,7 @@ public: virtual MainLoop *get_main_loop() const; - virtual String get_name(); + virtual String get_name() const; virtual Date get_date(bool utc) const; virtual Time get_time(bool utc) const; |