diff options
author | David Zeuthen <davidz@redhat.com> | 2010-12-14 12:50:04 -0500 |
---|---|---|
committer | David Zeuthen <davidz@redhat.com> | 2010-12-14 12:50:04 -0500 |
commit | ab17a7ef55b2c3278839302cf3ba5d214d2b2b7d (patch) | |
tree | 239ca29e13a903b6390a78516e8f74cb6229b7f7 /extras/gudev/seed-example-enum.js | |
parent | 0976fd063e1e488e388ec922fcd4dbed5b8da938 (diff) |
Add g_udev_device_get_is_initialized() method
Also nuke the "Index of deprecated symbols" since we have no
deprecated symbols just yet.
Signed-off-by: David Zeuthen <davidz@redhat.com>
Diffstat (limited to 'extras/gudev/seed-example-enum.js')
-rwxr-xr-x | extras/gudev/seed-example-enum.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/extras/gudev/seed-example-enum.js b/extras/gudev/seed-example-enum.js index 2aa80362ea..32200a42f9 100755 --- a/extras/gudev/seed-example-enum.js +++ b/extras/gudev/seed-example-enum.js @@ -4,6 +4,7 @@ const GLib = imports.gi.GLib; const GUdev = imports.gi.GUdev; function print_device(device) { + print(" initialized: " + device.get_is_initialized()); print(" subsystem: " + device.get_subsystem()); print(" devtype: " + device.get_devtype()); print(" name: " + device.get_name()); |