~jibel/synaptic/bugs.290524.502582

« back to all changes in this revision

Viewing changes to gtk/rgdebinstallprogress.cc

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt
  • Date: 2008-08-14 12:01:56 UTC
  • Revision ID: james.westby@ubuntu.com-20080814120156-p0do2yq09c3eho4l
Tags: 0.62.1ubuntu6
* gtk/rgdebinstallprogress.cc:
  - make sure that SIGCHLD is not blocked to work around
    kdesudo (LP: #156041)
* common/rpackageview.cc:
  - add new "Missing Recommends" default filter
  - fix incorrect display of the "Community Maintained" filter

Show diffs side-by-side

added added

removed removed

Lines of Context:
382
382
                                _config->FindB("Synaptic::closeZvt", false));
383
383
   //_image = glade_xml_get_widget(_gladeXML, "image");
384
384
 
 
385
   // work around for kdesudo blocking our SIGCHLD (LP: #156041) 
 
386
   sigset_t sset;
 
387
   sigemptyset(&sset);
 
388
   sigaddset(&sset, SIGCHLD);
 
389
   sigprocmask(SIG_UNBLOCK, &sset, NULL);
385
390
 
386
391
   _term = vte_terminal_new();
387
392
   vte_terminal_set_size(VTE_TERMINAL(_term),80,23);