Skip to content

Commit 6734f3a

Browse files
authored
Merge pull request #9 from ryonakano/fix-a-deprecation
Use 'add' method instead of deprecated 'add_with_viewport' method
2 parents 143f3c0 + 1819685 commit 6734f3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Widgets/Views/RemindersView.vala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ namespace Reminduck.Widgets.Views {
6161

6262
var scrolled_window = new Gtk.ScrolledWindow(null, null);
6363
build_reminders_list();
64-
scrolled_window.add_with_viewport(this.reminders_list);
64+
scrolled_window.add(this.reminders_list);
6565

6666
pack_start(scrolled_window, true, true, 0);
6767
}

0 commit comments

Comments
 (0)