Fix typo s/ouput/output/ in function name
This commit is contained in:
parent
f30610d64c
commit
1fec079266
1 changed files with 3 additions and 3 deletions
|
@ -416,7 +416,7 @@ fn handleLayoutChange(
|
||||||
) void {
|
) void {
|
||||||
const self = @fieldParentPtr(Self, "layout_change", listener);
|
const self = @fieldParentPtr(Self, "layout_change", listener);
|
||||||
|
|
||||||
const config = self.ouputConfigFromCurrent() catch {
|
const config = self.outputConfigFromCurrent() catch {
|
||||||
std.log.scoped(.output_manager).crit("out of memory", .{});
|
std.log.scoped(.output_manager).crit("out of memory", .{});
|
||||||
return;
|
return;
|
||||||
};
|
};
|
||||||
|
@ -437,7 +437,7 @@ fn handleManagerApply(
|
||||||
}
|
}
|
||||||
|
|
||||||
// Send the config that was actually applied
|
// Send the config that was actually applied
|
||||||
const applied_config = self.ouputConfigFromCurrent() catch {
|
const applied_config = self.outputConfigFromCurrent() catch {
|
||||||
std.log.scoped(.output_manager).crit("out of memory", .{});
|
std.log.scoped(.output_manager).crit("out of memory", .{});
|
||||||
return;
|
return;
|
||||||
};
|
};
|
||||||
|
@ -554,7 +554,7 @@ fn applyHeadToOutput(head: *wlr.OutputConfigurationV1.Head, wlr_output: *wlr.Out
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Create the config describing the current configuration
|
/// Create the config describing the current configuration
|
||||||
fn ouputConfigFromCurrent(self: *Self) !*wlr.OutputConfigurationV1 {
|
fn outputConfigFromCurrent(self: *Self) !*wlr.OutputConfigurationV1 {
|
||||||
const config = try wlr.OutputConfigurationV1.create();
|
const config = try wlr.OutputConfigurationV1.create();
|
||||||
// this destroys all associated config heads as well
|
// this destroys all associated config heads as well
|
||||||
errdefer config.destroy();
|
errdefer config.destroy();
|
||||||
|
|
Loading…
Reference in a new issue