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/osx/os_osx.h | |
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/osx/os_osx.h')
-rw-r--r-- | platform/osx/os_osx.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/osx/os_osx.h b/platform/osx/os_osx.h index 125a88ab6d..d2a6f38b01 100644 --- a/platform/osx/os_osx.h +++ b/platform/osx/os_osx.h @@ -165,7 +165,7 @@ public: void wm_minimized(bool p_minimized); - virtual String get_name(); + virtual String get_name() const; virtual void alert(const String &p_alert, const String &p_title = "ALERT!"); |