Skip to content

Commit

Permalink
Fix typos (#523)
Browse files Browse the repository at this point in the history
Changed method name `private void on_bus_aquired` to `private void on_bus_acquired`
  • Loading branch information
Sandwhiched authored Feb 26, 2024
1 parent 0c35f4d commit 4a6433b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wingpanel-interface/Main.vala
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public class WingpanelInterface.Main : Gala.Plugin {
Bus.own_name (BusType.SESSION,
DBUS_NAME,
BusNameOwnerFlags.NONE,
on_bus_aquired,
on_bus_acquired,
null,
() => warning ("Acquiring \"%s\" failed.", DBUS_NAME));
}
Expand All @@ -57,7 +57,7 @@ public class WingpanelInterface.Main : Gala.Plugin {
}
}

private void on_bus_aquired (DBusConnection connection) {
private void on_bus_acquired (DBusConnection connection) {
dbus_connection = connection;

try {
Expand Down

0 comments on commit 4a6433b

Please sign in to comment.