~ubuntu-branches/ubuntu/jaunty/gimp/jaunty-security

« back to all changes in this revision

Viewing changes to plug-ins/pygimp/gimpshelf.py

  • Committer: Bazaar Package Importer
  • Author(s): Pedro Fragoso
  • Date: 2008-08-22 11:50:05 UTC
  • mfrom: (0.1.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 34.
  • Revision ID: james.westby@ubuntu.com-20080822115005-yxj5svf3v9x1mkr7
Tags: upstream-2.4.7
ImportĀ upstreamĀ versionĀ 2.4.7

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
    return gimp._id2display, (obj.ID,)
53
53
 
54
54
def _vectors_id(obj):
55
 
    return gimp._id2vectors, int(obj.ID)
 
55
    return gimp._id2vectors, (int(obj.ID),)
56
56
 
57
57
copy_reg.pickle(gimp.Image,   _image_id,    gimp._id2image)
58
58
copy_reg.pickle(gimp.Layer,   _drawable_id, gimp._id2drawable)