summaryrefslogtreecommitdiff
path: root/core/os/time.h
diff options
context:
space:
mode:
authorNicholas Huelin <62965063+SirQuartz@users.noreply.github.com>2022-04-15 01:09:07 -0400
committerRĂ©mi Verschelde <rverschelde@gmail.com>2022-05-05 16:00:37 +0200
commit8409d92282e71f8ad479f48d6b1f6d52eb73ae39 (patch)
treea2c16b843e6f7eefe84a50f899cde9ff3617b266 /core/os/time.h
parent71e41eb395319cc521c2e814126fcc2a5a8034d6 (diff)
Fix inconsistent naming in Time
Diffstat (limited to 'core/os/time.h')
-rw-r--r--core/os/time.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/os/time.h b/core/os/time.h
index c4d10006fc..4b4ce3526a 100644
--- a/core/os/time.h
+++ b/core/os/time.h
@@ -85,8 +85,8 @@ public:
String get_datetime_string_from_unix_time(int64_t p_unix_time_val, bool p_use_space = false) const;
String get_date_string_from_unix_time(int64_t p_unix_time_val) const;
String get_time_string_from_unix_time(int64_t p_unix_time_val) const;
- Dictionary get_datetime_dict_from_string(String p_datetime, bool p_weekday = true) const;
- String get_datetime_string_from_dict(const Dictionary p_datetime, bool p_use_space = false) const;
+ Dictionary get_datetime_dict_from_datetime_string(String p_datetime, bool p_weekday = true) const;
+ String get_datetime_string_from_datetime_dict(const Dictionary p_datetime, bool p_use_space = false) const;
int64_t get_unix_time_from_datetime_dict(const Dictionary p_datetime) const;
int64_t get_unix_time_from_datetime_string(String p_datetime) const;
String get_offset_string_from_offset_minutes(int64_t p_offset_minutes) const;