diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-08-22 21:48:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-22 21:48:28 +0200 |
commit | 7c85c4a27ee230f6e863169e754ca3a883a57d02 (patch) | |
tree | 86124a9c4d731d7107f95af295bb445a30e41fbb /core | |
parent | 85cb22bd919290be8ad6349edc34e5d39102f244 (diff) | |
parent | e886d662ec2580c9b19c44296d0bb64fbf635ecf (diff) |
Merge pull request #64374 from RandomShaper/inheritable_cl_args
Diffstat (limited to 'core')
-rw-r--r-- | core/os/os.cpp | 4 | ||||
-rw-r--r-- | core/os/os.h | 3 |
2 files changed, 0 insertions, 7 deletions
diff --git a/core/os/os.cpp b/core/os/os.cpp index 1358c926d1..6091079241 100644 --- a/core/os/os.cpp +++ b/core/os/os.cpp @@ -166,10 +166,6 @@ bool OS::is_stdout_verbose() const { return _verbose_stdout; } -bool OS::is_single_window() const { - return _single_window; -} - bool OS::is_stdout_debug_enabled() const { return _debug_stdout; } diff --git a/core/os/os.h b/core/os/os.h index 9152b797ef..be9d73c22d 100644 --- a/core/os/os.h +++ b/core/os/os.h @@ -52,7 +52,6 @@ class OS { int low_processor_usage_mode_sleep_usec = 10000; bool _verbose_stdout = false; bool _debug_stdout = false; - bool _single_window = false; String _local_clipboard; int _exit_code = EXIT_FAILURE; // unexpected exit is marked as failure bool _allow_hidpi = false; @@ -243,8 +242,6 @@ public: void set_stdout_enabled(bool p_enabled); void set_stderr_enabled(bool p_enabled); - virtual bool is_single_window() const; - virtual void disable_crash_handler() {} virtual bool is_disable_crash_handler() const { return false; } virtual void initialize_debugging() {} |