summaryrefslogtreecommitdiff
path: root/extras/gudev/seed-example-enum.js
diff options
context:
space:
mode:
authorDavid Zeuthen <davidz@redhat.com>2010-12-14 12:50:04 -0500
committerDavid Zeuthen <davidz@redhat.com>2010-12-14 12:50:04 -0500
commitab17a7ef55b2c3278839302cf3ba5d214d2b2b7d (patch)
tree239ca29e13a903b6390a78516e8f74cb6229b7f7 /extras/gudev/seed-example-enum.js
parent0976fd063e1e488e388ec922fcd4dbed5b8da938 (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-xextras/gudev/seed-example-enum.js1
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());