Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 309615 | Differences between
and this patch

Collapse All | Expand All

(-)shotwell-0.5.0+dfsg.orig/Makefile (-1 / +1 lines)
Lines 6-12 Link Here
6
BUILD_ROOT = 1
6
BUILD_ROOT = 1
7
7
8
VALAC = valac
8
VALAC = valac
9
MIN_VALAC_VERSION = 0.7.10
9
MIN_VALAC_VERSION = 0.8.0
10
INSTALL_PROGRAM = install
10
INSTALL_PROGRAM = install
11
INSTALL_DATA = install -m 644
11
INSTALL_DATA = install -m 644
12
12
(-)shotwell-0.5.0+dfsg.orig/src/Page.vala (-1 / +1 lines)
Lines 48-54 Link Here
48
    }
48
    }
49
    
49
    
50
    private void destroy_ui_manager_widgets(Gtk.UIManagerItemType item_type) {
50
    private void destroy_ui_manager_widgets(Gtk.UIManagerItemType item_type) {
51
        unowned SList<Gtk.Widget> toplevels = ui.get_toplevels(item_type);
51
        SList<weak Gtk.Widget> toplevels = ui.get_toplevels(item_type);
52
        for (int ctr = 0; ctr < toplevels.length(); ctr++)
52
        for (int ctr = 0; ctr < toplevels.length(); ctr++)
53
            toplevels.nth(ctr).data.destroy();
53
            toplevels.nth(ctr).data.destroy();
54
    }
54
    }
(-)shotwell-0.5.0+dfsg.orig/src/Sidebar.vala (-1 / +1 lines)
Lines 69-75 Link Here
69
69
70
        Gtk.TreeSelection selection = get_selection();
70
        Gtk.TreeSelection selection = get_selection();
71
        selection.set_mode(Gtk.SelectionMode.BROWSE);
71
        selection.set_mode(Gtk.SelectionMode.BROWSE);
72
        selection.set_select_function(on_selection, null);
72
        selection.set_select_function(on_selection);
73
73
74
        enable_model_drag_dest(LibraryWindow.get_drop_target_entries(), Gdk.DragAction.ASK);
74
        enable_model_drag_dest(LibraryWindow.get_drop_target_entries(), Gdk.DragAction.ASK);
75
        
75
        

Return to bug 309615