diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2013-08-10 16:30:14 -0500 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2013-08-10 16:30:14 -0500 |
commit | 8633f5b9a97c3775c95d89abaf2e659d0859149e (patch) | |
tree | ad2699bac3757b30e24c170a2a1eb674a15795ff /libk3bdevice | |
parent | c896492b1b64d55b74ef33ab7d26662c7ab6e5f3 (diff) | |
download | k3b-8633f5b9a97c3775c95d89abaf2e659d0859149e.tar.gz k3b-8633f5b9a97c3775c95d89abaf2e659d0859149e.zip |
Fix FTBFS.
Diffstat (limited to 'libk3bdevice')
-rw-r--r-- | libk3bdevice/k3bhalconnection.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libk3bdevice/k3bhalconnection.cpp b/libk3bdevice/k3bhalconnection.cpp index 1877d78..476d016 100644 --- a/libk3bdevice/k3bhalconnection.cpp +++ b/libk3bdevice/k3bhalconnection.cpp @@ -840,9 +840,9 @@ int K3bDevice::HalConnection::mount( K3bDevice::Device* dev, TDEStorageDevice* sdevice = static_cast<TDEStorageDevice*>(hwdevice); // FIXME - // Options from 'options' are not currently loaded into 'optionString' - TQString optionString; - TQString mountedPath = sdevice->mountDevice(mountPoint, optionString); + // Options from 'options' are not currently loaded into 'mountOptions' + TDEStorageMountOptions mountOptions; + TQString mountedPath = sdevice->mountDevice(mountPoint, mountOptions); if (mountedPath.isNull()) { return org_freedesktop_Hal_CommunicationError; } @@ -869,8 +869,8 @@ int K3bDevice::HalConnection::unmount(K3bDevice::Device* dev, const TQStringList TDEStorageDevice* sdevice = static_cast<TDEStorageDevice*>(hwdevice); // FIXME - // Options from 'options' are not currently loaded into 'optionString' - TQString optionString; + // Options from 'options' are not currently loaded into 'mountOptions' + TQString mountOptions; if (!sdevice->unmountDevice(NULL)) { // Unmount failed! |