~ubuntu-branches/debian/experimental/synaptic/experimental

« back to all changes in this revision

Viewing changes to gtk/rgfiltermanager.cc

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt
  • Date: 2008-06-18 10:17:31 UTC
  • Revision ID: james.westby@ubuntu.com-20080618101731-fb77n5hy28hcq3g3
Tags: 0.62.1
* po/es.po:
  - updated Spanish translation (thanks to
     Francisco Javier Cuadrado)
* debian/control:
  - added "menu" to the recommends (closes: #478250)
* gtk/glade/window_main.glade:
  - make the main vpane shinkable
* gtk/rgmainwindow.cc:
  - do not loose the keyboard focus after a package 
    action in the listview
* debian/control:
  - switch bzr branch to bzr.debian.org

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 */
24
24
 
25
25
 
26
 
#include <stdio.h>
 
26
#include <cstdio>
 
27
#include <cstring>
27
28
#include <cassert>
28
29
#include "config.h"
29
30
#include "rpackageview.h"
370
371
      GtkWidget *typePattern = glade_xml_get_widget(me->_gladeXML,
371
372
                                                    "optionmenu_pattern_what");
372
373
      for (int j = 0; DepOptions[j]; j++) {
373
 
         if (strcmp(what, DepOptions[j]) == 0) {
 
374
         if (strcmp(what, _(DepOptions[j])) == 0) {
374
375
            type = (RPatternPackageFilter::DepType) j;
375
376
            break;
376
377
         }