~ubuntu-branches/ubuntu/oneiric/gimp/oneiric-security

« back to all changes in this revision

Viewing changes to plug-ins/pygimp/gimpui.c

  • Committer: Bazaar Package Importer
  • Author(s): Pedro Fragoso
  • Date: 2009-02-10 16:46:38 UTC
  • mfrom: (1.1.18 upstream)
  • Revision ID: james.westby@ubuntu.com-20090210164638-tyrazsf2bcncjnz0
Tags: 2.6.4-1ubuntu1
* Merge with Debian Experimental (LP: #313354)
* Ubuntu remaining changes:
* debian/patches/02_help-message.patch,
  debian/patches/03_gimp.desktop.in.in.patch:
  - updated some strings for ubuntu
* debian/rules:
  - updated translation templates
* debian/control:
  - Drop webkit build dependency. gimp is the only thing pulling
    in webkit for the desktop CDs, and makes them explode
    Without the webkit help browser
    plugin, help will just be displayed in the default browser.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6772
6772
    char *prop_names[] = {"title", "palette-name", NULL };
6773
6773
    guint nparams, i;
6774
6774
 
6775
 
    if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O|O:gimpui.PaletteSelectButton.__init__" , arg_names , &parsed_args[0] , &parsed_args[1]))
 
6775
    if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|OO:gimpui.PaletteSelectButton.__init__" , arg_names , &parsed_args[0] , &parsed_args[1]))
6776
6776
        return -1;
6777
6777
 
6778
6778
    memset(params, 0, sizeof(GParameter)*2);