diff options
author | Micky <micheledevita2@gmail.com> | 2022-10-21 01:02:29 +0200 |
---|---|---|
committer | Micky <micheledevita2@gmail.com> | 2022-10-21 01:10:38 +0200 |
commit | 9a1d87f66f8b20046f68f6750a38d60290f605a4 (patch) | |
tree | ad886939c4cdf3fcc7ef8b13f7e6db520996762a /core/object | |
parent | 72b845b28773dd40adf6f55b226fb732910cbf14 (diff) |
Fix unordered values of PROPERTY_HINT_INT_IS_POINTER & ARRAY_TYPE
Diffstat (limited to 'core/object')
-rw-r--r-- | core/object/object.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/object/object.h b/core/object/object.h index 359ab0f211..9867caf564 100644 --- a/core/object/object.h +++ b/core/object/object.h @@ -89,8 +89,8 @@ enum PropertyHint { PROPERTY_HINT_SAVE_FILE, ///< a file path must be passed, hint_text (optionally) is a filter "*.png,*.wav,*.doc,". This opens a save dialog PROPERTY_HINT_GLOBAL_SAVE_FILE, ///< a file path must be passed, hint_text (optionally) is a filter "*.png,*.wav,*.doc,". This opens a save dialog PROPERTY_HINT_INT_IS_OBJECTID, - PROPERTY_HINT_ARRAY_TYPE, PROPERTY_HINT_INT_IS_POINTER, + PROPERTY_HINT_ARRAY_TYPE, PROPERTY_HINT_LOCALE_ID, PROPERTY_HINT_LOCALIZABLE_STRING, PROPERTY_HINT_NODE_TYPE, ///< a node object type |