aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-01-29 03:28:52 +0000
committerThierry Vignaud <tv@mageia.org>2012-01-29 03:28:52 +0000
commit7922132f3aa33c96efdf2da03c1e0852473f2d55 (patch)
tree2025a5c3383f61a5c411b08ea316ccdd87dfed2c /lib
parent41f7d0ae63e1770fc64d431151bbba9b96bcb0e9 (diff)
downloadperl-Hal-Cdroms-7922132f3aa33c96efdf2da03c1e0852473f2d55.tar
perl-Hal-Cdroms-7922132f3aa33c96efdf2da03c1e0852473f2d55.tar.gz
perl-Hal-Cdroms-7922132f3aa33c96efdf2da03c1e0852473f2d55.tar.bz2
perl-Hal-Cdroms-7922132f3aa33c96efdf2da03c1e0852473f2d55.tar.xz
perl-Hal-Cdroms-7922132f3aa33c96efdf2da03c1e0852473f2d55.zip
(_get_device) rename as _get_udisks_device(), returning the actual Device
(_get_device) return the Properties interface of the device
Diffstat (limited to 'lib')
-rw-r--r--lib/Hal/Cdroms.pm8
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/Hal/Cdroms.pm b/lib/Hal/Cdroms.pm
index af9f1f9..5e32c7d 100644
--- a/lib/Hal/Cdroms.pm
+++ b/lib/Hal/Cdroms.pm
@@ -85,10 +85,16 @@ Return the mount point associated to the C<hal_path>, or undef it is not mounted
=cut
-sub _get_device {
+sub _get_udisks_device {
my ($o, $hal_path) = @_;
$o->{hal}->get_object($hal_path, "$hal_dn.Device");
}
+
+sub _get_device {
+ my ($o, $hal_path) = @_;
+ $o->{hal}->get_object($hal_path, 'org.freedesktop.DBus.Properties');
+}
+
sub _get_volume {
my ($o, $hal_path) = @_;
$o->{hal}->get_object($hal_path, "$hal_dn.Device.Volume");