~ubuntu-branches/ubuntu/quantal/libglib-perl/quantal

« back to all changes in this revision

Viewing changes to .pc/fix-pod-spelling.patch/GObject.xs

  • Committer: Bazaar Package Importer
  • Author(s): Jeffrey Ratcliffe
  • Date: 2010-07-28 07:36:48 UTC
  • mfrom: (0.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20100728073648-aiohmszaldj3bio4
Tags: 2:1.223-1
* New upstream release
* Bumped epoch to replace previous (unstable) release with this stable one.
* Standards-Version 3.9.1 (no changes)
* Add myself to Uploaders
* Update patched file paths, refresh all patches
* Updated watchfile to only report stable releases

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * Copyright (C) 2003-2006, 2010 by the gtk2-perl team (see the file AUTHORS for
 
2
 * Copyright (C) 2003-2006 by the gtk2-perl team (see the file AUTHORS for
3
3
 * the full list)
4
4
 *
5
5
 * This library is free software; you can redistribute it and/or modify it
1095
1095
represented by blessed hash references, with a magical connection to the
1096
1096
underlying C object.
1097
1097
 
1098
 
=head2 get and set
1099
 
 
1100
 
Some subclasses of C<Glib::Object> override C<get> and C<set> with methods
1101
 
more useful to the subclass, for example C<Gtk2::TreeModel> getting and
1102
 
setting row contents.
1103
 
 
1104
 
This is usually done when the subclass has no object properties.  Any object
1105
 
properties it or a further subclass does have can always be accessed with
1106
 
C<get_property> and C<set_property> (together with C<find_property> and
1107
 
C<list_properties> to enquire about them).
1108
 
 
1109
 
Generic code for any object subclass can use the names C<get_property> and
1110
 
C<set_property> to be sure of getting the object properties as such.
1111
 
 
1112
1098
=cut
1113
1099
 
1114
1100
BOOT:
1276
1262
=for apidoc Glib::Object::get
1277
1263
=for arg ... (list) list of property names
1278
1264
 
1279
 
Alias for C<get_property> (see L</get and set> above).
 
1265
Fetch and return the values for the object properties named in I<...>.
1280
1266
 
1281
1267
=cut
1282
1268
 
1283
1269
=for apidoc Glib::Object::get_property
1284
1270
=for arg ... (__hide__)
1285
1271
 
1286
 
Fetch and return the values for the object properties named in I<...>.
 
1272
Alias for C<get>.
1287
1273
 
1288
1274
=cut
1289
1275
 
1317
1303
=for signature $object->set (key => $value, ...)
1318
1304
=for arg ... key/value pairs
1319
1305
 
1320
 
Alias for C<set_property> (see L</get and set> above).
 
1306
Set object properties.
1321
1307
 
1322
1308
=cut
1323
1309
 
1325
1311
=for signature $object->set_property (key => $value, ...)
1326
1312
=for arg ... (__hide__)
1327
1313
 
1328
 
Set object properties.
 
1314
Alias for C<set>.
1329
1315
 
1330
1316
=cut
1331
1317