Description: Build with vala 0.8.0 Origin: upstream, http://trac.yorba.org/changeset?new=1415&old=1414 Index: shotwell-0.5.0+dfsg/Makefile =================================================================== --- shotwell-0.5.0+dfsg.orig/Makefile 2010-04-18 23:12:55.158183639 +0200 +++ shotwell-0.5.0+dfsg/Makefile 2010-04-18 23:12:51.758187599 +0200 @@ -6,7 +6,7 @@ BUILD_ROOT = 1 VALAC = valac -MIN_VALAC_VERSION = 0.7.10 +MIN_VALAC_VERSION = 0.8.0 INSTALL_PROGRAM = install INSTALL_DATA = install -m 644 Index: shotwell-0.5.0+dfsg/src/Page.vala =================================================================== --- shotwell-0.5.0+dfsg.orig/src/Page.vala 2010-04-18 23:12:55.914202123 +0200 +++ shotwell-0.5.0+dfsg/src/Page.vala 2010-04-18 23:12:51.738201949 +0200 @@ -48,7 +48,7 @@ } private void destroy_ui_manager_widgets(Gtk.UIManagerItemType item_type) { - unowned SList toplevels = ui.get_toplevels(item_type); + SList toplevels = ui.get_toplevels(item_type); for (int ctr = 0; ctr < toplevels.length(); ctr++) toplevels.nth(ctr).data.destroy(); } Index: shotwell-0.5.0+dfsg/src/Sidebar.vala =================================================================== --- shotwell-0.5.0+dfsg.orig/src/Sidebar.vala 2010-04-18 23:12:55.618199613 +0200 +++ shotwell-0.5.0+dfsg/src/Sidebar.vala 2010-04-18 23:12:51.750203001 +0200 @@ -69,7 +69,7 @@ Gtk.TreeSelection selection = get_selection(); selection.set_mode(Gtk.SelectionMode.BROWSE); - selection.set_select_function(on_selection, null); + selection.set_select_function(on_selection); enable_model_drag_dest(LibraryWindow.get_drop_target_entries(), Gdk.DragAction.ASK);