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/x11/os_x11.h | |
parent | 9643b2b6def9964a24d273e7611ebf5aeefcd4b5 (diff) |
added a const keyword for a methods that return constant literal...
Diffstat (limited to 'platform/x11/os_x11.h')
-rw-r--r-- | platform/x11/os_x11.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/x11/os_x11.h b/platform/x11/os_x11.h index a54851d4e7..ad35cdb4f9 100644 --- a/platform/x11/os_x11.h +++ b/platform/x11/os_x11.h @@ -216,7 +216,7 @@ protected: bool is_window_maximize_allowed(); public: - virtual String get_name(); + virtual String get_name() const; virtual void set_cursor_shape(CursorShape p_shape); virtual CursorShape get_cursor_shape() const; |