~jibel/synaptic/bugs.290524.502582

« back to all changes in this revision

Viewing changes to gtk/rgsummarywindow.cc

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt
  • Date: 2009-02-09 16:03:03 UTC
  • mfrom: (3.2.1 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090209160303-g2hldfhmsdfcrz5g
Tags: 0.62.5ubuntu1
* po/th.po:
  - updated Thai translation (closes: #512605)
* gtk/rgdebinstallprogress.cc:
  - if forkpty() show a propper error message
    (thanks to Evan) 
* gtk/rgfetchprogress.cc:
  - if the ETA is huge report it as unknown (LP: #322871)
* debian/control:
  - add depends to hicolor-icon-theme
  - rebuild against latest libapt/libept

Show diffs side-by-side

added added

removed removed

Lines of Context:
315
315
   if(gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(self))) {
316
316
      gtk_widget_hide(s);
317
317
      gtk_widget_show(d);
 
318
      gtk_button_set_label(GTK_BUTTON(self),_("_Hide Details"));
318
319
   } else {
319
320
      gtk_widget_show(s);
320
321
      gtk_widget_hide(d);
 
322
      gtk_button_set_label(GTK_BUTTON(self),_("_Show Details"));
321
323
   }
322
324
}
323
325