summaryrefslogtreecommitdiffstats
path: root/m_property.h
diff options
context:
space:
mode:
Diffstat (limited to 'm_property.h')
-rw-r--r--m_property.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/m_property.h b/m_property.h
index 249a22e969..b5b8af26ee 100644
--- a/m_property.h
+++ b/m_property.h
@@ -52,19 +52,19 @@ enum mp_property_action {
// arg: struct m_property_switch_arg*
M_PROPERTY_SWITCH,
+ // Get a string containing a parsable representation.
+ // Can't be overridden by property implementations.
+ // arg: char**
+ M_PROPERTY_GET_STRING,
+
// Set a new value from a string. The property wrapper parses this using the
// parse function provided by the property type.
// Can't be overridden by property implementations.
// arg: char*
- M_PROPERTY_PARSE,
-
- // Get a string containing a parsable representation.
- // Can't be overridden by property implementations.
- // arg: char**
- M_PROPERTY_TO_STRING,
+ M_PROPERTY_SET_STRING,
// Pass down an action to a sub-property.
- // arg: struct m_property_action_arg*
+ // arg: struct m_property_action_arg*
M_PROPERTY_KEY_ACTION,
};