Skip to content

Commit

Permalink
fix: rename constant in MainWindow to be more clear
Browse files Browse the repository at this point in the history
  • Loading branch information
lleyton authored Feb 5, 2024
1 parent f6ad121 commit aa13d9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/MainWindow.vala
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[GtkTemplate (ui = "/com/fyralabs/ValaTemplate/mainwindow.ui")]
public class ValaTemplate.MainWindow : He.ApplicationWindow {
private const GLib.ActionEntry APP_ENTRIES[] = {
private const GLib.ActionEntry WINDOW_ENTRIES[] = {
{ "about", action_about },
};

Expand Down Expand Up @@ -32,6 +32,6 @@ public class ValaTemplate.MainWindow : He.ApplicationWindow {


construct {
add_action_entries (APP_ENTRIES, this);
add_action_entries (WINDOW_ENTRIES, this);
}
}

0 comments on commit aa13d9d

Please sign in to comment.