Skip to content

Commit

Permalink
tools: fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
dbartolini committed Mar 4, 2021
1 parent 67a1522 commit 1b18161
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions tools/level_editor/panel_new_project.vala
Original file line number Diff line number Diff line change
Expand Up @@ -18,22 +18,22 @@ public class PanelNewProject : Gtk.Viewport

// Widgets
[GtkChild]
Gtk.Button _button_back;
unowned Gtk.Button _button_back;

[GtkChild]
Gtk.Button _button_create;
unowned Gtk.Button _button_create;

[GtkChild]
EntryText _entry_name;
unowned EntryText _entry_name;

[GtkChild]
Gtk.FileChooserButton _file_chooser_button_location;
unowned Gtk.FileChooserButton _file_chooser_button_location;

[GtkChild]
ComboBoxMap _combo_box_map_template;
unowned ComboBoxMap _combo_box_map_template;

[GtkChild]
Gtk.Label _label_message;
unowned Gtk.Label _label_message;

public PanelNewProject(LevelEditorApplication app, User user, Project project)
{
Expand Down
6 changes: 3 additions & 3 deletions tools/level_editor/panel_projects_list.vala
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ public class PanelProjectsList : Gtk.ScrolledWindow

// Widgets
[GtkChild]
Gtk.ListBox _list_projects;
unowned Gtk.ListBox _list_projects;

[GtkChild]
Gtk.Button _button_new_project;
unowned Gtk.Button _button_new_project;

[GtkChild]
Gtk.Button _button_import_project;
unowned Gtk.Button _button_import_project;

public PanelProjectsList(LevelEditorApplication app, User user)
{
Expand Down

0 comments on commit 1b18161

Please sign in to comment.