mirror of
https://github.com/servo/servo.git
synced 2025-07-22 14:53:49 +01:00
Return whether property was removed from Servo_DeclarationBlock_RemoveProperty.
This commit is contained in:
parent
1d8e78720b
commit
b9ef2bbdd5
2 changed files with 3 additions and 3 deletions
|
@ -2840,7 +2840,7 @@ extern "C" {
|
|||
pub fn Servo_DeclarationBlock_RemoveProperty(
|
||||
declarations: RawServoDeclarationBlockBorrowed,
|
||||
property: *const nsACString,
|
||||
);
|
||||
) -> bool;
|
||||
}
|
||||
extern "C" {
|
||||
pub fn Servo_DeclarationBlock_RemovePropertyById(
|
||||
|
|
|
@ -2874,8 +2874,8 @@ fn remove_property(
|
|||
pub unsafe extern "C" fn Servo_DeclarationBlock_RemoveProperty(
|
||||
declarations: RawServoDeclarationBlockBorrowed,
|
||||
property: *const nsACString,
|
||||
) {
|
||||
remove_property(declarations, get_property_id_from_property!(property, ()));
|
||||
) -> bool {
|
||||
remove_property(declarations, get_property_id_from_property!(property, false))
|
||||
}
|
||||
|
||||
#[no_mangle]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue