diff options
author | Hein-Pieter van Braam <hp@tmm.cx> | 2017-02-13 12:47:24 +0100 |
---|---|---|
committer | Hein-Pieter van Braam <hp@tmm.cx> | 2017-02-13 12:50:02 +0100 |
commit | 411ee71b4d2dd4dfb3c137b057e0cfcdb55d6291 (patch) | |
tree | a3c28058efb7a80faed23bff683fe0931859ed52 /platform/iphone/icloud.mm | |
parent | bf64df4427836a4e7a5060ee11d75eea6da79b14 (diff) | |
download | redot-engine-411ee71b4d2dd4dfb3c137b057e0cfcdb55d6291.tar.gz |
Rename the _MD macro to D_METHOD
This new name also makes its purpose a little clearer
This is a step towards fixing #56
Diffstat (limited to 'platform/iphone/icloud.mm')
-rw-r--r-- | platform/iphone/icloud.mm | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/platform/iphone/icloud.mm b/platform/iphone/icloud.mm index 0d1825dd6b..a9b23baaeb 100644 --- a/platform/iphone/icloud.mm +++ b/platform/iphone/icloud.mm @@ -44,14 +44,14 @@ extern "C" { ICloud* ICloud::instance = NULL; void ICloud::_bind_methods() { - ClassDB::bind_method(_MD("remove_key"),&ICloud::remove_key); - ClassDB::bind_method(_MD("set_key_values"),&ICloud::set_key_values); - ClassDB::bind_method(_MD("get_key_value"),&ICloud::get_key_value); - ClassDB::bind_method(_MD("synchronize_key_values"),&ICloud::synchronize_key_values); - ClassDB::bind_method(_MD("get_all_key_values"),&ICloud::get_all_key_values); - - ClassDB::bind_method(_MD("get_pending_event_count"),&ICloud::get_pending_event_count); - ClassDB::bind_method(_MD("pop_pending_event"),&ICloud::pop_pending_event); + ClassDB::bind_method(D_METHOD("remove_key"),&ICloud::remove_key); + ClassDB::bind_method(D_METHOD("set_key_values"),&ICloud::set_key_values); + ClassDB::bind_method(D_METHOD("get_key_value"),&ICloud::get_key_value); + ClassDB::bind_method(D_METHOD("synchronize_key_values"),&ICloud::synchronize_key_values); + ClassDB::bind_method(D_METHOD("get_all_key_values"),&ICloud::get_all_key_values); + + ClassDB::bind_method(D_METHOD("get_pending_event_count"),&ICloud::get_pending_event_count); + ClassDB::bind_method(D_METHOD("pop_pending_event"),&ICloud::pop_pending_event); }; int ICloud::get_pending_event_count() { |