~ubuntu-branches/ubuntu/maverick/brasero/maverick

« back to all changes in this revision

Viewing changes to src/brasero-search-beagle.c

  • Committer: Bazaar Package Importer
  • Author(s): Luke Yelavich, Robert Ancell
  • Date: 2009-11-06 17:23:58 UTC
  • mfrom: (1.1.33 upstream)
  • Revision ID: james.westby@ubuntu.com-20091106172358-hke0i08w2r14t6ii
Tags: 2.29.1-0ubuntu1
[ Robert Ancell ]
* New upstream release: (LP: #475008)
  - New cdda2wav plugin to copy more accurately audio CDs
  - Support burning DTS wav files
  - Multiple copies: now brasero will chain up copies on every insertion
  - Start to move away from 
  - Lots of code cleanups
  - New dialog when ejection did not work
  - Lots of strings changed (and hopefully improved)
* debian/control.in:
  - Build-depends on libcanberra-dev, libcanberra-gtk-dev
* debian/patches/012_build_error.patch:
  - Fix build error

Show diffs side-by-side

added added

removed removed

Lines of Context:
366
366
 
367
367
        gtk_tree_view_set_rules_hint (GTK_TREE_VIEW (obj->priv->tree), TRUE);
368
368
        g_signal_connect (G_OBJECT (obj->priv->tree), 
369
 
                          "row_activated",
 
369
                          "row-activated",
370
370
                          G_CALLBACK (brasero_search_tree_activated_cb),
371
371
                          obj);
372
372
        g_signal_connect (G_OBJECT (gtk_tree_view_get_selection (GTK_TREE_VIEW (obj->priv->tree))),
518
518
        }
519
519
 
520
520
        if (search->priv->tree) {
521
 
                brasero_search_empty_tree (search);
522
 
                search->priv->tree = NULL;
 
521
                g_signal_handlers_disconnect_by_func (gtk_tree_view_get_selection (GTK_TREE_VIEW (search->priv->tree)),
 
522
                                                      brasero_search_tree_selection_changed_cb,
 
523
                                                      search);
 
524
 
523
525
                g_signal_handlers_disconnect_by_func (search->priv->filter,
524
526
                                                      brasero_search_mime_filter_changed,
525
527
                                                      search);
526
 
                search->priv->filter = 0;
 
528
 
 
529
                brasero_search_empty_tree (search);
 
530
                search->priv->filter = NULL;
 
531
                search->priv->tree = NULL;
527
532
        }
528
533
 
529
534
        if (search->priv->id) {
788
793
 
789
794
                last = search->priv->first_hit + search->priv->max_results;
790
795
                last = last <= search->priv->hits_num ? last : search->priv->hits_num;
791
 
                tmp = g_strdup_printf (_("Results %i - %i (out of %i)"),
 
796
                tmp = g_strdup_printf (_("Results %i–%i (out of %i)"),
792
797
                                       search->priv->first_hit + 1,
793
798
                                       last,
794
799
                                       search->priv->hits_num);