diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2023-01-12 09:24:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-12 09:24:47 +0100 |
commit | 0e4e782ada0bdd4ef19415f82a6373e2d79f7ecc (patch) | |
tree | fb8297949960789c8d9308f27d08db44f11f728d /platform/uwp | |
parent | dd1b3ff0890b8dfc73977cfc874a9c741e13c388 (diff) | |
parent | 86b8176864f1d9450855264bf7783467fd7b71d7 (diff) |
Merge pull request #70714 from Calinou/doc-os-stdin
Improve documentation for `OS.read_string_from_stdin()`
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 40c19056b3..38df68c764 100644 --- a/platform/uwp/os_uwp.cpp +++ b/platform/uwp/os_uwp.cpp @@ -680,7 +680,7 @@ bool OS_UWP::set_environment(const String &p_var, const String &p_value) const { return false; } -String OS_UWP::get_stdin_string(bool p_block) { +String OS_UWP::get_stdin_string() { return String(); } diff --git a/platform/uwp/os_uwp.h b/platform/uwp/os_uwp.h index 02a81f1a47..153656add7 100644 --- a/platform/uwp/os_uwp.h +++ b/platform/uwp/os_uwp.h @@ -162,7 +162,7 @@ public: HANDLE mouse_mode_changed; virtual void alert(const String &p_alert, const String &p_title = "ALERT!"); - String get_stdin_string(bool p_block); + String get_stdin_string(); void set_mouse_mode(MouseMode p_mode); MouseMode get_mouse_mode() const; |