Skip to content

Commit

Permalink
Change get_mdiz_order method call name with attribute; fix #190
Browse files Browse the repository at this point in the history
fmt
  • Loading branch information
TTWNO authored and luukvanderduim committed Jun 18, 2024
1 parent eaa55b1 commit aeb5b4f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion atspi-proxies/src/component.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ trait Component {
fn get_layer(&self) -> zbus::Result<Layer>;

/// GetMDIZOrder method
fn get_mdizorder(&self) -> zbus::Result<i16>;
#[zbus(name = "GetMDIZOrder")]
fn get_mdiz_order(&self) -> zbus::Result<i16>;

/// GetPosition method
fn get_position(&self, coord_type: CoordType) -> zbus::Result<(i32, i32)>;
Expand Down

0 comments on commit aeb5b4f

Please sign in to comment.