diff options
author | hbina085 <hanif.ariffin.4326@gmail.com> | 2019-05-20 13:36:24 -0400 |
---|---|---|
committer | hbina085 <hanif.ariffin.4326@gmail.com> | 2019-05-21 02:16:30 -0400 |
commit | f78baa5f936cce8cff7359131a1e082cf6300c8b (patch) | |
tree | f21512c62f41260dfa1569f1b559cb21d71564b1 /platform/javascript/os_javascript.h | |
parent | 9643b2b6def9964a24d273e7611ebf5aeefcd4b5 (diff) | |
download | redot-engine-f78baa5f936cce8cff7359131a1e082cf6300c8b.tar.gz |
added a const keyword for a methods that return constant literal...
Diffstat (limited to 'platform/javascript/os_javascript.h')
-rw-r--r-- | platform/javascript/os_javascript.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/javascript/os_javascript.h b/platform/javascript/os_javascript.h index f7ce28e660..a0c7c31f2d 100644 --- a/platform/javascript/os_javascript.h +++ b/platform/javascript/os_javascript.h @@ -146,7 +146,7 @@ public: virtual void set_icon(const Ref<Image> &p_icon); String get_executable_path() const; virtual Error shell_open(String p_uri); - virtual String get_name(); + virtual String get_name() const; virtual bool can_draw() const; virtual String get_resource_dir() const; |