feat(pty): rename get_pts() -> get_pts_name()

This commit is contained in:
Leroy Hopson 2024-03-03 17:49:49 +13:00
parent c6609ebae5
commit b78bdf3136
No known key found for this signature in database
GPG key ID: D2747312A6DB51AA
4 changed files with 12 additions and 11 deletions

View file

@ -58,7 +58,7 @@ namespace godot
void set_use_threads(bool p_use);
bool is_using_threads() const;
String get_pts() const;
String get_pts_name() const;
Error fork(const String &file = "", const PackedStringArray &args = PackedStringArray(), const String &cwd = ".", const int cols = 80, const int rows = 24);
void kill(const int signum = Signal::SIGNAL_SIGHUP);
@ -82,7 +82,7 @@ namespace godot
Dictionary env = Dictionary();
bool use_os_env = true;
String pts = "";
String pts_name = "";
String _get_fork_file(const String &file) const;
Dictionary _get_fork_env() const;