~ubuntu-branches/ubuntu/quantal/gnumeric/quantal

« back to all changes in this revision

Viewing changes to src/dialogs/dialog-quit.c

  • Committer: Bazaar Package Importer
  • Author(s): Gauvain Pocentek
  • Date: 2009-06-07 11:10:47 UTC
  • mfrom: (1.1.19 upstream) (2.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090607111047-l3rtbzfjxvmi1kx0
Tags: 1.9.8-1ubuntu1
* Merge from debian unstable, remaining changes:
  - Promoted gnumeric-doc to Recommends in gnumeric package for help to be
    installed automatically
  - gnumeric-gtk is a transitional package
  - gnumeric conflicts with gnumeric-gtk << 1.8.3-3ubuntu1
  - call initltool-update in po*
  - remove psiconv support (psiconv is in universe):
    o debian/control: remove B-D on libpsiconv-dev
    o debian/rules: don't pass --with-psiconv to ./configure

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
        gtk_tree_model_get (model, iter,
66
66
                            QUIT_COL_DOC, &doc,
67
67
                            -1);
68
 
        g_return_if_fail (IS_GO_DOC (doc));
 
68
        g_return_if_fail (GO_IS_DOC (doc));
69
69
 
70
70
        uri = go_doc_get_uri (doc);
71
71
        filename = go_filename_from_uri (uri);
82
82
        g_object_set (cell, "markup", markup, NULL);
83
83
        g_free (markup);
84
84
        g_free (shortname);
 
85
        g_free (filename);
85
86
}
86
87
 
87
88
static void
219
220
        gtk_dialog_set_default_response (dialog, GTK_RESPONSE_OK);
220
221
 
221
222
        tree = (GtkTreeView *)gtk_tree_view_new ();
 
223
        gtk_tree_view_set_enable_search (tree, FALSE);
222
224
        gtk_container_add (GTK_CONTAINER (scrollw), GTK_WIDGET (tree));
223
225
        gtk_tree_view_set_model (tree, GTK_TREE_MODEL (list));
224
226